|
From: Hiram C. <ch...@us...> - 2002-09-13 03:58:18
|
User: chirino
Date: 02/09/12 20:06:06
Modified: . build.xml
Log:
Added a few testcases for the aspect stuff I just commited.
Revision Changes Path
1.174 +9 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- build.xml 9 Sep 2002 19:08:35 -0000 1.173
+++ build.xml 13 Sep 2002 03:06:06 -0000 1.174
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.173 2002/09/09 19:08:35 cooperfbi Exp $ -->
+<!-- $Id: build.xml,v 1.174 2002/09/13 03:06:06 chirino Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -118,6 +118,13 @@
<pathelement path="${apache.log4j.lib}/log4j.jar"/>
</path>
+ <!-- dom4j -->
+ <property name="dom4j.dom4j.root" value="${project.thirdparty}/dom4j/dom4j"/>
+ <property name="dom4j.dom4j.lib" value="${dom4j.dom4j.root}/lib"/>
+ <path id="dom4j.dom4j.classpath">
+ <pathelement path="${dom4j.dom4j.lib}/dom4j.jar"/>
+ </path>
+
<!-- EDU.oswego.cs.dl.util.concurrent -->
<property name="oswego.concurrent.root" value="${project.thirdparty}/oswego/concurrent"/>
<property name="oswego.concurrent.lib" value="${oswego.concurrent.root}/lib"/>
@@ -181,6 +188,7 @@
<path refid="jacorb.jacorb.classpath"/>
<path refid="junit.junit.classpath"/>
<path refid="junitejb.junitejb.classpath"/>
+ <path refid="dom4j.dom4j.classpath"/>
<!-- needed for JBossMQ selector tests -->
<path refid="gnu.regexp.classpath"/>
|