[jboss-cvs] JBossAS SVN: r111687 - branches/JBPAPP_5_1.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 29 04:54:14 EDT 2011


Author: wolfc
Date: 2011-06-29 04:54:13 -0400 (Wed, 29 Jun 2011)
New Revision: 111687

Modified:
   branches/JBPAPP_5_1/pom.xml
Log:
JBPAPP-6793: disallow snapshots without property devel set


Modified: branches/JBPAPP_5_1/pom.xml
===================================================================
--- branches/JBPAPP_5_1/pom.xml	2011-06-28 19:39:28 UTC (rev 111686)
+++ branches/JBPAPP_5_1/pom.xml	2011-06-29 08:54:13 UTC (rev 111687)
@@ -323,7 +323,7 @@
         <enabled>true</enabled>
       </releases>
       <snapshots>
-        <enabled>false</enabled>
+        <enabled>true</enabled>
       </snapshots>
     </repository>
   </repositories>
@@ -387,6 +387,29 @@
       </modules>
     </profile>
     
+    <!-- JBPAPP-6793: For development and CI on Hudson -->
+    <profile>
+      <id>disable-snapshots</id>
+      <activation>
+         <property>
+            <name>!devel</name>
+         </property>
+      </activation>
+      <repositories>
+        <repository>
+          <id>nexus.jboss.org</id>
+          <name>JBoss Nexus Repository</name>
+          <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+          <releases>
+            <enabled>true</enabled>
+          </releases>
+          <snapshots>
+            <enabled>false</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
+
     <!-- This profile is used by the ant/buildmagic build -->
     <profile>
       <id>integrated-build</id>
@@ -456,5 +479,4 @@
     </profile>
     
   </profiles>
-  
 </project>



More information about the jboss-cvs-commits mailing list