|
From: David J. <d_j...@us...> - 2003-02-15 06:51:43
|
User: d_jencks
Date: 03/02/14 22:51:42
Modified: . Tag: Branch_3_2 build.xml
Log:
backport the check-connection-when-matched functionality from head, add a test, and clean up quite a bit of stuff in the jca-jdbc wrappers.
Revision Changes Path
No revision
No revision
1.165.2.42 +12 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.41
retrieving revision 1.165.2.42
diff -u -r1.165.2.41 -r1.165.2.42
--- build.xml 13 Feb 2003 09:37:32 -0000 1.165.2.41
+++ build.xml 15 Feb 2003 06:51:42 -0000 1.165.2.42
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.41 2003/02/13 09:37:32 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.42 2003/02/15 06:51:42 d_jencks Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1702,6 +1702,17 @@
<target name="_jars-jca"
depends="compile">
<mkdir dir="${build.lib}"/>
+
+ <!-- build test jdbc driver with config inside sar -->
+ <jar jarfile="${build.lib}/jbosstestdriver.sar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/jca/jdbc/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/jca/jdbc">
+ <include name="META-INF/jboss-service.xml"/>
+ </fileset>
+ </jar>
+
<!-- build test adapter -->
<jar jarfile="${build.lib}/jbosstestadapter.jar">
|