|
From: Scott M S. <st...@us...> - 2002-08-01 04:05:04
|
User: starksm
Date: 02/07/31 21:05:03
Modified: . Tag: Branch_3_0 build.xml
Log:
Include the hypersonic libs for the jdbc based login module tests
Revision Changes Path
No revision
No revision
1.106.2.37 +11 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.36
retrieving revision 1.106.2.37
diff -u -r1.106.2.36 -r1.106.2.37
--- build.xml 31 Jul 2002 01:24:51 -0000 1.106.2.36
+++ build.xml 1 Aug 2002 04:05:03 -0000 1.106.2.37
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.36 2002/07/31 01:24:51 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.37 2002/08/01 04:05:03 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -167,6 +167,13 @@
<pathelement path="${apache.bcel.lib}/bcel.jar"/>
</path>
+ <!-- Hypersonic -->
+ <property name="hsqldb.root" value="${project.thirdparty}/hsqldb/hsqldb"/>
+ <property name="hsqldb.lib" value="${hsqldb.root}/lib"/>
+ <path id="hsqldb.classpath">
+ <pathelement path="${hsqldb.lib}/hsqldb.jar"/>
+ </path>
+
<!-- The combined library classpath -->
<path id="library.classpath">
<path refid="sun.jaxp.classpath"/>
@@ -184,8 +191,10 @@
<!-- needed for JBossMQ selector tests -->
<path refid="gnu.regexp.classpath"/>
- <!-- needed from proxy tests -->
+ <!-- needed for proxy tests -->
<path refid="apache.bcel.classpath"/>
+ <!-- needed for security login module tests -->
+ <path refid="hsqldb.classpath"/>
</path>
<!-- ======= -->
|