|
From: David J. <d_j...@us...> - 2002-05-24 01:39:11
|
User: d_jencks
Date: 02/05/23 18:39:11
Modified: . build.xml
Log:
implemented cleanup to reset autocommit and tx isolation state, added a test
Revision Changes Path
1.133 +9 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- build.xml 23 May 2002 18:24:26 -0000 1.132
+++ build.xml 24 May 2002 01:39:10 -0000 1.133
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.132 2002/05/23 18:24:26 schaefera Exp $ -->
+<!-- $Id: build.xml,v 1.133 2002/05/24 01:39:10 d_jencks Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1396,6 +1396,14 @@
<include name="**/*.xml"/>
</fileset>
</jar>
+
+ <!--copy the plain *-service.xml files too -->
+ <copy todir="${build.lib}" filtering="no">
+ <fileset dir="${build.resources}/jca/autocommit">
+ <include name="*.xml"/>
+ </fileset>
+ </copy>
+
</target>
<!-- jmx test -->
|