Author: jbalunas(a)redhat.com
Date: 2010-07-15 18:24:13 -0400 (Thu, 15 Jul 2010)
New Revision: 18105
Modified:
root/build/parent/trunk/pom.xml
Log:
RF-8756 Added the profile to support the common stage repo
Modified: root/build/parent/trunk/pom.xml
===================================================================
--- root/build/parent/trunk/pom.xml 2010-07-15 21:26:17 UTC (rev 18104)
+++ root/build/parent/trunk/pom.xml 2010-07-15 22:24:13 UTC (rev 18105)
@@ -443,6 +443,50 @@
<jsf2.impl.version>2.0.1-SNAPSHOT</jsf2.impl.version>
</properties>
</profile>
+
+ <!-- This profile can be used while testing staged releases. This
+ works around two issues with how maven inherits from settings.xml
+ See RF-8756 for more.
+
+ To use this you also need to add !jboss-public-stage to your
+ mirrorOf settings in settings.xml if you are following jboss dev
+ maven setup.
+ -->
+ <profile>
+ <id>jboss-public-stage</id>
+ <repositories>
+ <repository>
+ <id>jboss-public-stage</id>
+ <name>JBoss Public Stage Maven Repository Group</name>
+
<
url>https://repository.jboss.org/nexus/content/groups/staging/</url...
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-stage</id>
+ <name>JBoss Public Stage Maven Repository Group</name>
+
<
url>https://repository.jboss.org/nexus/content/groups/staging/</url...
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+ </profile>
</profiles>