|
From: Scott M S. <st...@us...> - 2003-05-18 16:52:22
|
User: starksm
Date: 03/05/18 09:52:19
Modified: . Tag: Branch_3_2 build.xml
Log:
Add an inheritRefs=true to the maybejars inner antcall so that the path
references setup in configure are visible
Revision Changes Path
No revision
No revision
1.165.2.68 +2 -4 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.67
retrieving revision 1.165.2.68
diff -u -r1.165.2.67 -r1.165.2.68
--- build.xml 18 May 2003 06:28:06 -0000 1.165.2.67
+++ build.xml 18 May 2003 16:52:18 -0000 1.165.2.68
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.67 2003/05/18 06:28:06 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.68 2003/05/18 16:52:18 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -61,7 +61,6 @@
-->
<target name="configure" unless="configure.disable">
-
<!-- Give user a chance to override without editing this file
(and without typing -D each time they run it) -->
<property file=".ant.properties" />
@@ -476,7 +475,6 @@
<!-- Compile EJB beans with XDoclet -->
<target name="compile-bean-sources" depends="init" unless="noxdoclet">
-
<taskdef name="ejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask" classpathref="xdoclet.task.classpath"/>
<mkdir dir="${build.gen-src}"/>
@@ -3852,7 +3850,7 @@
<target name="maybejars" depends="init"
unless="nojars">
- <antcall target="jars"/>
+ <antcall target="jars" inheritRefs="true"/>
</target>
<target name="tests" description="Execute all tests."
|