Plugin Documentation
This report describes goals, parameters details, requirements and sample usage of this plugin.
Goals
Goals available for this plugin:
Goal | Report? | Description |
---|---|---|
stapler:i18n | No | Alias for stapler:l10n mojo. Left for compatibility. |
stapler:jelly-taglibdoc | Yes | Scans Jelly tag libraries from tag files, and generate taglib.xml compatible with jellydoc-maven-plugin
For productive debugging of this mojo, run "mvn site:run" with debugger. Every request will trigger a whole rendering, and you can do hot-swap of byte code for changes. |
stapler:l10n | No | Generate localized message bundles. |
stapler:l10n-progress | No | Prints out the progress of localization. See also: Translation progress |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
Maven | 3.9.6 |
JDK | 17 |
System Requirements History
The following specifies the minimum requirements to run this Maven plugin for historical versions:
Plugin Version | Maven | JDK |
---|---|---|
from 223.v46129f4695e9 to 235.va_0774a_0d056a_ | 3.9.6 | - |
from 171.va_08b_35123382 to 221.vfc8da_cf1b_6d9 | 3.8.1 | - |
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.jenkins.tools.maven</groupId>
<artifactId>stapler-maven-plugin</artifactId>
<version>999999-SNAPSHOT</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>stapler-maven-plugin</artifactId>
</plugin>
...
</plugins>
</build>
...
<!-- To use the report goals in your POM or parent POM -->
<reporting>
<plugins>
<plugin>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>stapler-maven-plugin</artifactId>
<version>999999-SNAPSHOT</version>
</plugin>
...
</plugins>
</reporting>
...
</project>
For more information, see "Guide to Configuring Plug-ins"