|
From: Jason D. <us...@us...> - 2002-05-31 04:13:44
|
User: user57
Date: 02/05/30 21:13:43
Modified: . build.xml
Log:
o Moved the TransactionManager (not UserTransaction) services and support
classes to jboss/transaction.
o Transaction services are now configured in transaction-service.xml and
dependent services in jboss-service.xml (which were using order to
prevent loading problems) now have explicit <depends>
o Build system has been updated to include jboss/transaction by default
Revision Changes Path
1.140 +9 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- build.xml 28 May 2002 15:54:05 -0000 1.139
+++ build.xml 31 May 2002 04:13:43 -0000 1.140
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.139 2002/05/28 15:54:05 reverbel Exp $ -->
+<!-- $Id: build.xml,v 1.140 2002/05/31 04:13:43 user57 Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -274,6 +274,13 @@
<pathelement path="${jboss.cluster.lib}/jbossha-client.jar"/>
</path>
+ <!-- Transaction -->
+ <property name="jboss.transaction.root" value="${project.root}/transaction/output"/>
+ <property name="jboss.transaction.lib" value="${jboss.transaction.root}/lib"/>
+ <path id="jboss.transaction.classpath">
+ <pathelement path="${jboss.transaction.lib}/testsuite-support.jar"/>
+ </path>
+
<!-- JBossMX -->
<property name="jboss.jmx.root" value="${project.root}/jmx/output"/>
<property name="jboss.jmx.lib" value="${jboss.jmx.root}/lib"/>
@@ -310,6 +317,7 @@
<path refid="jboss.connector.classpath"/>
<path refid="jboss.cluster.classpath"/>
<path refid="jboss.management.classpath"/>
+ <path refid="jboss.transaction.classpath"/>
</path>
<!-- ===== -->
|