Author: ilgrosso
Date: Mon Sep 1 06:49:08 2014
New Revision: 1621686
URL: http://svn.apache.org/r1621686
Log:
Updating RAT and avoid deploying via Maven the standalone module (as recently
done for 1_2_X)
Modified:
syncope/branches/1_1_X/pom.xml
syncope/branches/1_1_X/standalone/pom.xml
Modified: syncope/branches/1_1_X/pom.xml
URL:
http://svn.apache.org/viewvc/syncope/branches/1_1_X/pom.xml?rev=1621686&r1=1621685&r2=1621686&view=diff
==============================================================================
--- syncope/branches/1_1_X/pom.xml (original)
+++ syncope/branches/1_1_X/pom.xml Mon Sep 1 06:49:08 2014
@@ -1317,7 +1317,7 @@ under the License.
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
- <inherited>true</inherited>
+ <version>0.11</version>
<configuration>
<excludes>
<exclude>nbactions.xml</exclude>
@@ -1427,6 +1427,12 @@ under the License.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8.1</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
Modified: syncope/branches/1_1_X/standalone/pom.xml
URL:
http://svn.apache.org/viewvc/syncope/branches/1_1_X/standalone/pom.xml?rev=1621686&r1=1621685&r2=1621686&view=diff
==============================================================================
--- syncope/branches/1_1_X/standalone/pom.xml (original)
+++ syncope/branches/1_1_X/standalone/pom.xml Mon Sep 1 06:49:08 2014
@@ -212,4 +212,22 @@ under the License.
</resource>
</resources>
</build>
+
+ <profiles>
+ <profile>
+ <id>apache-release</id>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>