Author: brett Date: Tue Dec 18 20:12:46 2007 New Revision: 605413 URL: http://svn.apache.org/viewvc?rev=605413&view=rev Log: version setting should be in plugin management
Modified: maven/plugins/trunk/maven-remote-resources-plugin/pom.xml Modified: maven/plugins/trunk/maven-remote-resources-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-remote-resources-plugin/pom.xml?rev=605413&r1=605412&r2=605413&view=diff ============================================================================== --- maven/plugins/trunk/maven-remote-resources-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-remote-resources-plugin/pom.xml Tue Dec 18 20:12:46 2007 @@ -166,17 +166,21 @@ </execution> </executions> </plugin> - <!-- to be removed when parent is upgraded --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-release-plugin</artifactId> - <version>2.0-beta-7</version> - </plugin> - <plugin> + </plugins> + <pluginManagement> + <plugins> + <!-- to be removed when parent is upgraded --> + <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <version>2.0.4</version> - </plugin> - </plugins> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-7</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.0.4</version> + </plugin> + </plugins> + </pluginManagement> </build> </project>