|
From: Adrian B. <ej...@us...> - 2003-08-18 23:22:00
|
User: ejort
Date: 03/08/18 16:21:59
Modified: . Tag: Branch_3_2 build.xml
Log:
Add a test for a read-only CMR get in a transaction thanks to Brian Stansberry
Revision Changes Path
No revision
No revision
1.165.2.93 +11 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.92
retrieving revision 1.165.2.93
diff -u -r1.165.2.92 -r1.165.2.93
--- build.xml 9 Aug 2003 20:19:22 -0000 1.165.2.92
+++ build.xml 18 Aug 2003 23:21:58 -0000 1.165.2.93
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.92 2003/08/09 20:19:22 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.93 2003/08/18 23:21:58 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3401,6 +3401,16 @@
includes="net/**/*.*"/>
<zipfileset src="${junit.junit.lib}/junit.jar"
includes="junit/**/*.*"/>
+ </jar>
+
+ <!-- build cmp2-cmrtansaction.jar -->
+ <jar jarfile="${build.lib}/cmp2-cmrtransaction.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/cmp2/cmrtransaction/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/cmp2/cmrtransaction">
+ <include name="**/*.*"/>
+ </fileset>
</jar>
</target>
|