Author: olamy Date: Mon Oct 24 20:09:26 2011 New Revision: 1188346 URL: http://svn.apache.org/viewvc?rev=1188346&view=rev Log: more documentation on groupId change an how to configure that in pom
Modified: tomcat/maven-plugin/trunk/src/site/apt/index.apt Modified: tomcat/maven-plugin/trunk/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/tomcat/maven-plugin/trunk/src/site/apt/index.apt?rev=1188346&r1=1188345&r2=1188346&view=diff ============================================================================== --- tomcat/maven-plugin/trunk/src/site/apt/index.apt (original) +++ tomcat/maven-plugin/trunk/src/site/apt/index.apt Mon Oct 24 20:09:26 2011 @@ -35,6 +35,36 @@ Apache Tomcat Maven Plugin Since version 2.0 tomcat mojos has been renamed to tomcat6 and tomcat7 with the same goals. + You must configure your pom to use this new groupId + ++---------- + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.tomcat.maven</groupId> + <artifactId>tomcat6-maven-plugin</artifactId> + <version>2.0-SNAPSHOT</version> + </plugin> + <plugin> + <groupId>org.apache.tomcat.maven</groupId> + <artifactId>tomcat7-maven-plugin</artifactId> + <version>2.0-SNAPSHOT</version> + </plugin> + </plugins> + </pluginManagement> ++---------- + + Or add the groupId in your settings.xml + ++---------- + <pluginGroups> + .... + <pluginGroup>org.apache.tomcat.maven</pluginGroup> + .... + </pluginGroups> ++---------- + + * Goals Overview The goals for this plugin come in two categories: --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org