psteitz 2004/12/12 20:53:25
Modified: math build.xml
Log:
Include LICENSE.txt and NOTICE.txt in jars.
Revision Changes Path
1.24 +11 -1 jakarta-commons/math/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/math/build.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- build.xml 10 Dec 2004 05:12:52 -0000 1.23
+++ build.xml 13 Dec 2004 04:53:25 -0000 1.24
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--build.xml generated by maven from project.xml version 1.1-dev
- on date December 9 2004, time 2202-->
+ on date December 12 2004, time 2150-->
<project default="jar" name="commons-math" basedir=".">
<property name="defaulttargetdir" value="target">
@@ -51,6 +51,16 @@
<classpath refid="build.classpath">
</classpath>
</javac>
+ <mkdir dir="${classesdir}/META-INF">
+ </mkdir>
+ <copy todir="${classesdir}/META-INF">
+ <fileset dir=".">
+ <include name="NOTICE.txt">
+ </include>
+ <include name="LICENSE.txt">
+ </include>
+ </fileset>
+ </copy>
</target>
<target name="jar" description="o Create the jar" depends="compile,test">
<jar jarfile="${defaulttargetdir}/${final.name}.jar"
excludes="**/package.html" basedir="${classesdir}">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]