|
From: Jeremy B. <jb...@us...> - 2003-04-27 21:36:25
|
User: jboynes
Date: 03/04/27 14:36:23
Modified: . Tag: Branch_3_2 build.xml
Log:
Fix for 723908 CMP Performs Unnecessary Check - plus other related stuff :-)
Added a service MBean that can be used to classify SQLExceptions from the JDBC driver.
Implemented check based on standard SQLState for unique constraint violation
Modified JDBCCreate command to skip SELECT if an exception processor is defined
To avoid migration issues, this is <b>not</b> the default behaviour - exmaple configuration is contained in standardjbosscmp-jdbc.xml
Added test case for DuplicateKeyException
Cleaned up UUID and PkSql create commands
Added test cases for UUID and PkSql Key generation
Revision Changes Path
No revision
No revision
1.165.2.59 +15 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.58
retrieving revision 1.165.2.59
diff -u -r1.165.2.58 -r1.165.2.59
--- build.xml 22 Apr 2003 00:39:37 -0000 1.165.2.58
+++ build.xml 27 Apr 2003 21:36:22 -0000 1.165.2.59
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.58 2003/04/22 00:39:37 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.59 2003/04/27 21:36:22 jboynes Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3269,6 +3269,20 @@
includes="net/**/*.*"/>
<zipfileset src="${junit.junit.lib}/junit.jar"
includes="junit/**/*.*"/>
+ </jar>
+
+ <!-- build cmp2-keygen.jar -->
+ <jar jarfile="${build.lib}/cmp2-keygen.jar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/cmp2/keygen/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/cmp2/keygen">
+ <include name="**/*.*"/>
+ </fileset>
+ <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar"
+ includes="net/**/*.*"/>
+ <zipfileset src="${junit.junit.lib}/junit.jar"
+ includes="junit/**/*.*"/>
</jar>
</target>
|