bayard 2003/07/04 08:26:38
Modified: lang build.xml
Log:
Switched from using top-level Commons LICENSE to specific Commons Lang LICENSE.txt.
The main driving reason for this is so that distributed sources may properly build.
Submitted by: Arnaud Vandyck
Revision Changes Path
1.13 +3 -3 jakarta-commons/lang/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/lang/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- build.xml 31 May 2003 18:44:36 -0000 1.12
+++ build.xml 4 Jul 2003 15:26:38 -0000 1.13
@@ -79,14 +79,14 @@
</target>
<target name="dist" depends="compile,javadoc" description="Create binary
distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE" todir="${dist.home}"/>
+ <copy file="LICENSE.txt" todir="${dist.home}"/>
<copy file="RELEASE-NOTES.txt" todir="${dist.home}"/>
<antcall target="jar"/>
</target>
<target name="jar" depends="compile" description="Create jar">
<mkdir dir="${dist.home}"/>
<mkdir dir="${build.home}/classes/META-INF"/>
- <copy file="../LICENSE"
tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
+ <copy file="LICENSE.txt"
tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<jar jarfile="${dist.home}/${final.name}.jar"
basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/>
</target>
<target name="install-jar" depends="jar" description="--> Installs jar file in
${lib.repo}">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]