|
From: Sacha L. <sla...@us...> - 2003-05-30 07:08:41
|
User: slaboure
Date: 03/05/29 23:59:40
Modified: . Tag: Branch_3_2 build.xml
Log:
Fixed testsuite build
(cluster file for singleton service are not located in jbossha-client.jar but instead in jbossha.jar which was not on the classpath)
Revision Changes Path
No revision
No revision
1.165.2.71 +5 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.70
retrieving revision 1.165.2.71
diff -u -r1.165.2.70 -r1.165.2.71
--- build.xml 22 May 2003 01:38:17 -0000 1.165.2.70
+++ build.xml 30 May 2003 06:59:39 -0000 1.165.2.71
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.70 2003/05/22 01:38:17 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.71 2003/05/30 06:59:39 slaboure Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -289,7 +289,9 @@
<path id="jboss.cluster.classpath">
<pathelement path="${jboss.cluster.lib}/jbossha-client.jar"/>
</path>
-
+ <path id="jboss.cluster-server.classpath">
+ <pathelement path="${jboss.cluster.lib}/jbossha.jar"/>
+ </path>
<!-- Transaction -->
<property name="jboss.transaction.root" value="${project.root}/transaction/output"/>
<property name="jboss.transaction.lib" value="${jboss.transaction.root}/lib"/>
@@ -340,6 +342,7 @@
<path refid="jboss.security.classpath"/>
<path refid="jboss.connector.classpath"/>
<path refid="jboss.cluster.classpath"/>
+ <path refid="jboss.cluster-server.classpath"/>
<path refid="jboss.management.classpath"/>
<path refid="jboss.transaction.classpath"/>
<path refid="jboss.varia.classpath"/>
|