|
From: Scott M S. <st...@us...> - 2002-08-01 04:05:51
|
User: starksm
Date: 02/07/31 21:05:50
Modified: . build.xml
Log:
Include the hypersonic libs for the jdbc based login module tests
Revision Changes Path
1.164 +11 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- build.xml 1 Aug 2002 03:03:05 -0000 1.163
+++ build.xml 1 Aug 2002 04:05:50 -0000 1.164
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.163 2002/08/01 03:03:05 reverbel Exp $ -->
+<!-- $Id: build.xml,v 1.164 2002/08/01 04:05:50 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -162,6 +162,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.jce.classpath"/>
@@ -178,8 +185,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>
<!-- ======= -->
|