|
From: Scott M S. <st...@us...> - 2003-09-10 00:39:34
|
User: starksm
Date: 03/09/09 17:39:29
Modified: . build.xml
Log:
Add the junit jars to the naming.jar
Revision Changes Path
1.290 +4 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- build.xml 5 Sep 2003 15:53:28 -0000 1.289
+++ build.xml 10 Sep 2003 00:39:29 -0000 1.290
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.289 2003/09/05 15:53:28 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.290 2003/09/10 00:39:29 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -196,7 +196,6 @@
<pathelement path="${classpath}"/>
<pathelement path="${local.classpath}"/>
<pathelement path="${project.tools}/lib/ant.jar"/>
- <pathelement path="${project.tools}/lib/junit.jar"/>
<pathelement path="${project.tools}/lib/optional.jar"/>
<path refid="jboss.jmx.classpath"/>
<path refid="thirdparty.classpath"/>
@@ -2383,7 +2382,10 @@
<include name="org/jboss/test/naming/ejb/**"/>
<include name="org/jboss/test/naming/interfaces/**"/>
<include name="org/jboss/test/util/Debug.class"/>
+ <include name="org/jboss/test/util/ejb/*"/>
</fileset>
+ <zipfileset src="${junit.junit.lib}/junit.jar"
+ includes="junit/**/*.*"/>
<fileset dir="${build.resources}/naming/jar">
<include name="META-INF/*.xml"/>
</fileset>
|