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

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jun 23 06:16:38 EDT 2011


Author: adinn
Date: 2011-06-23 06:16:37 -0400 (Thu, 23 Jun 2011)
New Revision: 37117

Modified:
   labs/jbosstm/trunk/build-release-pkgs.xml
Log:
modified to deploy lib jars in an uber jar call jbossxts.jar rather than deploying a sar. this omits the war-based servlets for now -- part fixes for JBTM-848

Modified: labs/jbosstm/trunk/build-release-pkgs.xml
===================================================================
--- labs/jbosstm/trunk/build-release-pkgs.xml	2011-06-23 10:10:07 UTC (rev 37116)
+++ labs/jbosstm/trunk/build-release-pkgs.xml	2011-06-23 10:16:37 UTC (rev 37117)
@@ -70,12 +70,12 @@
             http://www.jboss.org/community/docs/DOC-11381  -->
 
 <!--
+-->
     <property name="svnbase" value="https://svn.jboss.org/repos/labs/labs/jbosstm"/>
     <property name="tag" value="trunk"/>
     <property name="filename" value="5.0.0.SNAPSHOT"/>
     <property name="mvn.repositoryId" value="jboss-snapshots-repository"/>
     <property name="mvn.repo.url" value="https://repository.jboss.org/nexus/content/repositories/snapshots/"/>
--->
 
     <!-- a working directory for the process. Can contain output from previous releases if you like to keep them archived locally. -->
     <property name="workdir" location="/tmp/packaged_builds"/>
@@ -224,8 +224,13 @@
 
         <!-- xts -->
 
-        <mvn-artifact.macro artifact="jbossxts" packaging="sar"
-                            dir="${workdir}/build/${tag}/xts/sar"/>
+        <delete dir="${workdir}/build"/>
+        <mkdir dir="${workdir}/build"/>
+        <unzip src="${workdir}/jbossts-jta-${filename}.zip" dest="${workdir}/build"/>
+        <mvn-artifact.macro artifact="jbossxts" packaging="jar"
+                            dir="${workdir}/build/${tag}/xts/lib"/>
+        <mvn-artifact.macro artifact="jbossxts-api" packaging="jar"
+                            dir="${workdir}/build/${tag}/xts/lib"/>
         <mvn-artifact.macro artifact="jbossxts-tests" packaging="zip"
                             dir="${workdir}/build/${tag}/xts/tests"/>
         <mvn-artifact.macro artifact="jbossxts-interop-tests" packaging="zip"



More information about the jboss-svn-commits mailing list