Author: sebb
Date: Fri Sep 9 14:39:47 2011
New Revision: 1167222
URL: http://svn.apache.org/viewvc?rev=1167222&view=rev
Log:
Put buildnumber plugin in management section and in sorted location in plugins
Modified:
commons/proper/commons-parent/trunk/pom.xml
Modified: commons/proper/commons-parent/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1167222&r1=1167221&r2=1167222&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Fri Sep 9 14:39:47 2011
@@ -302,27 +302,16 @@
<version>2.3.5</version>
<inherited>true</inherited>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.0</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- org.apache.maven.plugins, alpha order by artifact id -->
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <revisionOnScmFailure>UNKNOWN</revisionOnScmFailure>
- </configuration>
- </plugin>
- <plugin>
<!--
- Copy LICENSE.txt and NOTICE.txt so that they are included
- in the -javadoc jar file for the component.
@@ -429,6 +418,21 @@
<artifactId>apache-rat-plugin</artifactId>
<version>${commons.rat.version}</version>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <revisionOnScmFailure>UNKNOWN</revisionOnScmFailure>
+ </configuration>
+ </plugin>
</plugins>
</build>