Author: cmueller
Date: Thu Mar 28 10:30:41 2013
New Revision: 1462021
URL: http://svn.apache.org/r1462021
Log:
moved the maven-release-plugin configuration to our root pom. Otherwise the
configuration has no effect.
Modified:
camel/trunk/parent/pom.xml
camel/trunk/pom.xml
Modified: camel/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/parent/pom.xml?rev=1462021&r1=1462020&r2=1462021&view=diff
==============================================================================
--- camel/trunk/parent/pom.xml (original)
+++ camel/trunk/parent/pom.xml Thu Mar 28 10:30:41 2013
@@ -260,7 +260,6 @@
<maven-jar-plugin-version>2.4</maven-jar-plugin-version>
<maven-javadoc-plugin-version>2.9</maven-javadoc-plugin-version>
<maven-plugin-plugin-version>3.2</maven-plugin-plugin-version>
- <maven-release-plugin-version>2.4</maven-release-plugin-version>
<maven-remote-resources-plugin-version>1.4</maven-remote-resources-plugin-version>
<maven-resources-plugin-version>2.6</maven-resources-plugin-version>
<maven-reporting-api-version>2.2.1</maven-reporting-api-version>
@@ -2212,19 +2211,6 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>${maven-release-plugin-version}</version>
- <configuration>
- <tagBase>https://svn.apache.org/repos/asf/camel/tags</tagBase>
- <useReleaseProfile>false</useReleaseProfile>
- <preparationGoals>clean install</preparationGoals>
- <goals>deploy</goals>
-
<arguments>-Papache-release,enable-schemagen,sourcecheck,validate,hibernate-derby</arguments>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>${maven-remote-resources-plugin-version}</version>
</plugin>
Modified: camel/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/camel/trunk/pom.xml?rev=1462021&r1=1462020&r2=1462021&view=diff
==============================================================================
--- camel/trunk/pom.xml (original)
+++ camel/trunk/pom.xml Thu Mar 28 10:30:41 2013
@@ -195,6 +195,20 @@
</excludes>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <tagBase>https://svn.apache.org/repos/asf/camel/tags</tagBase>
+ <useReleaseProfile>false</useReleaseProfile>
+ <preparationGoals>clean install</preparationGoals>
+ <goals>deploy</goals>
+
<arguments>-Papache-release,enable-schemagen,sourcecheck,validate,hibernate-derby</arguments>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
</build>