Plugin Documentation
Goals available for this plugin:
| Goal | Description |
|---|---|
| resource-list:help | Display help information on resource-list-maven-plugin. Call mvn resource-list:help -Ddetail=true -Dgoal=<goal-name> to display parameter details. |
| resource-list:list-resources | Creates a list of resources in the current project. |
System Requirements
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 3.8.2 |
| JDK | 11 |
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>com.github.robtimus</groupId>
<artifactId>resource-list-maven-plugin</artifactId>
<version>1.0</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>com.github.robtimus</groupId>
<artifactId>resource-list-maven-plugin</artifactId>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"
