[jboss-cvs] JBossAS SVN: r90566 - branches/JBPAPP_5_0/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 24 14:36:41 EDT 2009


Author: permaine
Date: 2009-06-24 14:36:41 -0400 (Wed, 24 Jun 2009)
New Revision: 90566

Added:
   branches/JBPAPP_5_0/build/build.properties
Modified:
   branches/JBPAPP_5_0/build/build-release.xml
   branches/JBPAPP_5_0/build/build.xml
Log:
JBPAPP-1979 Tag EAP in a non ambigous way for Jopr to distinguish between EAP 5 and AS 5

Modified: branches/JBPAPP_5_0/build/build-release.xml
===================================================================
--- branches/JBPAPP_5_0/build/build-release.xml	2009-06-24 17:53:23 UTC (rev 90565)
+++ branches/JBPAPP_5_0/build/build-release.xml	2009-06-24 18:36:41 UTC (rev 90566)
@@ -78,7 +78,7 @@
    <condition property="version" value="${release.version.major}.${release.version.minor}.${release.version.revision}.${release.version.tag}">
       <isset property="release.version.tag"/>
    </condition>
-   <condition property="cvs.tag" value="JBoss_${release.version.major}_${release.version.minor}_${release.version.revision}">
+   <condition property="cvs.tag" value="JBPAPP_${release.version.major}_${release.version.minor}_${release.version.revision}">
       <not>
          <isset property="release.version.tag"/>
       </not>

Added: branches/JBPAPP_5_0/build/build.properties
===================================================================
--- branches/JBPAPP_5_0/build/build.properties	                        (rev 0)
+++ branches/JBPAPP_5_0/build/build.properties	2009-06-24 18:36:41 UTC (rev 90566)
@@ -0,0 +1,8 @@
+# This file defines default property set for build variables
+
+version.major=5
+version.minor=0
+version.revision=0
+version.tag=GA
+version.name=EAP
+

Modified: branches/JBPAPP_5_0/build/build.xml
===================================================================
--- branches/JBPAPP_5_0/build/build.xml	2009-06-24 17:53:23 UTC (rev 90565)
+++ branches/JBPAPP_5_0/build/build.xml	2009-06-24 18:36:41 UTC (rev 90566)
@@ -29,6 +29,19 @@
 
   &buildmagic;
 
+  <condition property="build.properties.file.exists">
+    <available file="build.properties" type="file"/>
+  </condition>
+
+  <fail unless="build.properties.file.exists">
+  build.properties file not found.
+Please ensure that build.properties exists in the build dir of the checkout tree.
+  </fail>
+
+
+  <!-- Read in properties file for configuration to go smoothly -->
+  <property file="build.properties"/>
+
   <!-- Add the antcontrib tasks -->
   <taskdef resource="net/sf/antcontrib/antcontrib.properties">
     <classpath>




More information about the jboss-cvs-commits mailing list