[MPLUGIN-321] improve documentation on maven-plugin-annotations telling that optional=true is sufficient

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1778915 13f79535-47bb-0310-9956-ffa450edef68
master
Robert Scholte 2017-01-15 13:21:08 +00:00
parent e44bb78aff
commit 04684f0fc3
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ Using Plugin Tools Java5 Annotations
<groupId>org.apache.maven.plugin-tools</groupId> <groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId> <artifactId>maven-plugin-annotations</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>provided</scope><!-- annotations are needed only to build the plugin --> <optional>true</optional> <!-- annotations are not used at runtime because @Retention(value=CLASS), they are needed only to build the plugin -->
</dependency> </dependency>
</dependencies> </dependencies>
... ...