1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Generate the component descriptor with plexus-component-metadata instead of plexus-maven-plugin
Origin: backport, https://github.com/codehaus-plexus/plexus-pom/commit/3c5f784f
--- a/pom.xml
+++ b/pom.xml
@@ -43,6 +43,18 @@
<target>1.5</target>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-component-metadata</artifactId>
+ <executions>
+ <execution>
+ <id>process-classes</id>
+ <goals>
+ <goal>generate-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<dependencies>
|