Plugin Documentation
Goals available for this plugin:
Goal | Report? | Description |
---|---|---|
taglib:help | No | Display help information on taglib-maven-plugin. Call mvn taglib:help -Ddetail=true
-Dgoal=<goal-name> to display parameter details. |
taglib:taglibdoc | Yes | Generates taglibdoc documentation. |
taglib:taglibdocjar | No | Generates a jar containing the tlddoc generated documentation. The generated jar is installed/deployed to the repository if install/deploy is executed after this goal. |
taglib:tagreference | Yes | Generates a tag reference xdoc that can be integrated in a maven generated site. |
taglib:tldgenerate | No | Generates tld files from directories of jsp 2.0 tag files. |
taglib:validate | Yes | Generates a tag library validation report. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
Maven | 2.0 |
JDK | 8 |
Memory | No minimum requirement. |
Disk Space | No minimum requirement. |
Usage
You should specify the version in your project's plugin configuration:
<project> ... <build> <!-- To define the plugin version in your parent POM --> <pluginManagement> <plugins> <plugin> <groupId>io.github.weblegacy</groupId> <artifactId>taglib-maven-plugin</artifactId> <version>2.6</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>io.github.weblegacy</groupId> <artifactId>taglib-maven-plugin</artifactId> <version>2.6</version> </plugin> ... </plugins> </build> ... <!-- To use the report goals in your POM or parent POM --> <reporting> <plugins> <plugin> <groupId>io.github.weblegacy</groupId> <artifactId>taglib-maven-plugin</artifactId> <version>2.6</version> </plugin> ... </plugins> </reporting> ... </project>
For more information, see "Guide to Configuring Plug-ins"