[jboss-svn-commits] JBL Code SVN: r24942 - labs/jbosstm/trunk/XTS.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jan 27 06:01:29 EST 2009


Author: jhalliday
Date: 2009-01-27 06:01:28 -0500 (Tue, 27 Jan 2009)
New Revision: 24942

Modified:
   labs/jbosstm/trunk/XTS/build.xml
Log:
Add tweak to XTS build to allow release bundles to be built with sar containing only the 1.1 (supported) version but not 1.0 (unsupported).  JBTM-480


Modified: labs/jbosstm/trunk/XTS/build.xml
===================================================================
--- labs/jbosstm/trunk/XTS/build.xml	2009-01-27 10:57:47 UTC (rev 24941)
+++ labs/jbosstm/trunk/XTS/build.xml	2009-01-27 11:01:28 UTC (rev 24942)
@@ -314,7 +314,11 @@
 	</target>
 
     <target name="com.arjuna.mwlabs.xts.sar.build">
-        <ant dir="sar"/>
+        <!-- by default we build 1.0 and 1.1 for ease of testing,
+            but release bundles should use -Dsartype=sar-11 so that
+            thay contain only the supported version. -->
+        <property name="sartype" value="sar-both"/>
+        <ant dir="sar" target="${sartype}"/>
     </target>
 
 	<target name="com.arjuna.mwlabs.xts.wsas.clean">




More information about the jboss-svn-commits mailing list