jefft 01/12/10 13:35:32
Modified: . build.xml
Log:
Changes to make the source distribution buildable by mortals:
* Revert from Ant 1.5 to Ant 1.4 syntax
* Remove the line that excluded lib/logkit*.jar from the classpath. As part of
creating the source distribution, tools/ext/logkit.jar is copied to lib/, so
we need it in there or the source distribution won't build.
Revision Changes Path
1.110 +2 -3 jakarta-avalon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon/build.xml,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- build.xml 2001/12/10 17:21:35 1.109
+++ build.xml 2001/12/10 21:35:32 1.110
@@ -93,7 +93,6 @@
<pathelement path="${java.class.path}" />
<fileset dir="${lib.dir}">
<include name="*.jar" />
- <exclude name="logkit*.jar"/>
<exclude name="xerces*.jar"/>
</fileset>
<pathelement path="${build.classes}" />
@@ -191,7 +190,7 @@
<target name="jar-exceptionutil" depends="compile-exceptionutil">
<mkdir dir="${build.lib}"/>
- <jar file="${build.lib}/exceptionutil.jar" basedir="${build.classes}">
+ <jar jarfile="${build.lib}/exceptionutil.jar" basedir="${build.classes}">
<include name="org/apache/avalon/framework/ExceptionUtil.class" />
<include name="org/apache/avalon/framework/Cascading*" />
</jar>
@@ -418,7 +417,7 @@
<!-- Creates all the .jar files -->
<target name="all" depends="compile" description="generates the Avalon jar
files">
<mkdir dir="${build.lib}"/>
- <jar file="${build.lib}/${framework.name}.jar"
basedir="${build.classes}">
+ <jar jarfile="${build.lib}/${framework.name}.jar"
basedir="${build.classes}">
<include name="org/apache/avalon/framework/**"/>
<exclude name="**/test/*"/>
</jar>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>