leif 2002/08/08 02:47:24
Modified: . build.xml
Log:
Get the dist build working.
Had to comment out baxter as it requires JMX.jar to be present.
Made the build-subprojects-dist task depend on jar so that the dependencies
all work correctly. Should not be necessary, but there is a problem where the
version property is somehow getting set to 2.2.D11 causing the rest of the
build to fail.
Revision Changes Path
1.177 +7 -1 jakarta-avalon-excalibur/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/build.xml,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- build.xml 6 Aug 2002 16:28:17 -0000 1.176
+++ build.xml 8 Aug 2002 09:47:24 -0000 1.177
@@ -15,7 +15,11 @@
<target name="main" depends="jar"/>
<!-- Build default targets of all subprojects. -->
- <target name="build-subprojects-dist">
+ <!-- The dependency checker was causing a strange problem where the
version of -->
+ <!-- jars was being set to 2.2.D11 for some reason?? To work around the
problem -->
+ <!-- depending on jar makes sure that all of the dependencies will be
satisfied -->
+ <!-- in advance. -->
+ <target name="build-subprojects-dist" depends="jar">
<!-- Sub projects which do not depend on any other excalibur sub
projects. -->
<ant dir="altrmi" target="dist"/>
<ant dir="collections" target="dist"/>
@@ -37,7 +41,9 @@
<ant dir="event" target="dist"/> <!-- collections,
concurrent, lang, pool, thread, util, event -->
+ <!-- Baxter requires JMX.jar to build and is causing the build to
fail.
<ant dir="baxter" target="dist"/>
+ -->
<ant dir="bzip2" target="dist"/>
<ant dir="cache" target="dist"/>
<ant dir="cli" target="dist"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>