Modified jar goal to include Apache License and notice in the jar. Fixed copyright notices. Reformatted xml.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141108 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-02-28 19:43:40 +00:00
parent 94f23a61b5
commit 8b80de72bb
1 changed files with 64 additions and 105 deletions

169
build.xml
View File

@ -17,170 +17,129 @@
--> -->
<project default="jar" name="commons-math" basedir="."> <project default="jar" name="commons-math" basedir=".">
<property name="defaulttargetdir" value="target"> <property name="defaulttargetdir" value="target"/>
</property> <property name="libdir" value="target/lib"/>
<property name="libdir" value="target/lib"> <property name="classesdir" value="target/classes"/>
</property> <property name="testclassesdir" value="target/test-classes"/>
<property name="classesdir" value="target/classes"> <property name="testreportdir" value="target/test-reports"/>
</property> <property name="distdir" value="dist"/>
<property name="testclassesdir" value="target/test-classes"> <property name="javadocdir" value="dist/docs/api"/>
</property> <property name="final.name" value="commons-math-1.0-dev"/>
<property name="testreportdir" value="target/test-reports">
</property>
<property name="distdir" value="dist">
</property>
<property name="javadocdir" value="dist/docs/api">
</property>
<property name="final.name" value="commons-math-1.0-dev">
</property>
<target name="init" description="o Initializes some properties"> <target name="init" description="o Initializes some properties">
<mkdir dir="${libdir}"> <mkdir dir="${libdir}"/>
</mkdir>
<condition property="noget"> <condition property="noget">
<equals arg2="only" arg1="${build.sysclasspath}"> <equals arg2="only" arg1="${build.sysclasspath}">
</equals> </equals>
</condition> </condition>
</target> </target>
<target name="compile" description="o Compile the code" depends="get-deps"> <target name="compile" description="o Compile the code" depends="get-deps">
<mkdir dir="${classesdir}"> <mkdir dir="${classesdir}"/>
</mkdir>
<javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html"> <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
<src> <src>
<pathelement location="src/java"> <pathelement location="src/java"/>
</pathelement>
</src> </src>
<classpath> <classpath>
<fileset dir="${libdir}"> <fileset dir="${libdir}">
<include name="*.jar"> <include name="*.jar"/>
</include>
</fileset> </fileset>
</classpath> </classpath>
</javac> </javac>
<copy todir="${testclassesdir}"> <copy todir="${testclassesdir}">
<fileset dir="src/test"> <fileset dir="src/test">
<include name="**/*.xml"> <include name="**/*.xml"/>
</include> <include name="**/*.txt"/>
<include name="**/*.txt">
</include>
</fileset> </fileset>
</copy> </copy>
</target> </target>
<target name="jar" description="o Create the jar" depends="compile,test">
<jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}"> <target name="jar" description="Create the jar" depends="compile,test">
</jar> <mkdir dir="${classesdir}/META-INF"/>
<copy file="LICENSE.txt" tofile="${classesdir}/META-INF/LICENSE.txt"/>
<copy file="NOTICE.txt" tofile="${classesdir}/META-INF/NOTICE.txt"/>
<jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}"/>
</target> </target>
<target name="clean" description="o Clean up the generated directories"> <target name="clean" description="o Clean up the generated directories">
<delete dir="${defaulttargetdir}"> <delete dir="${defaulttargetdir}"/>
</delete> <delete dir="${distdir}"/>
<delete dir="${distdir}">
</delete>
</target> </target>
<target name="dist" description="o Create a distribution" depends="jar, javadoc"> <target name="dist" description="o Create a distribution" depends="jar, javadoc">
<mkdir dir="dist"> <mkdir dir="dist"/>
</mkdir>
<copy todir="dist"> <copy todir="dist">
<fileset dir="${defaulttargetdir}" includes="*.jar"> <fileset dir="${defaulttargetdir}" includes="*.jar"/>
</fileset> <fileset dir="${basedir}" includes="LICENSE*, README*"/>
<fileset dir="${basedir}" includes="LICENSE*, README*">
</fileset>
</copy> </copy>
</target> </target>
<target name="test" description="o Run the test cases" if="test.failure" depends="internal-test"> <target name="test" description="o Run the test cases" if="test.failure" depends="internal-test">
<fail message="There were test failures."> <fail message="There were test failures."/>
</fail>
</target> </target>
<target name="internal-test" depends="compile-tests"> <target name="internal-test" depends="compile-tests">
<mkdir dir="${testreportdir}"> <mkdir dir="${testreportdir}"/>
</mkdir>
<junit dir="./" failureproperty="test.failure" printSummary="yes" fork="true" haltonerror="true"> <junit dir="./" failureproperty="test.failure" printSummary="yes" fork="true" haltonerror="true">
<sysproperty key="basedir" value="."> <sysproperty key="basedir" value="."/>
</sysproperty> <formatter type="xml"/>
<formatter type="xml"> <formatter usefile="false" type="plain"/>
</formatter>
<formatter usefile="false" type="plain">
</formatter>
<classpath> <classpath>
<fileset dir="${libdir}"> <fileset dir="${libdir}">
<include name="*.jar"> <include name="*.jar"/>
</include>
</fileset> </fileset>
<pathelement path="${testclassesdir}"> <pathelement path="${testclassesdir}"/>
</pathelement> <pathelement path="${classesdir}"/>
<pathelement path="${classesdir}">
</pathelement>
</classpath> </classpath>
<batchtest todir="${testreportdir}"> <batchtest todir="${testreportdir}">
<fileset dir="src/test"> <fileset dir="src/test">
<include name="**/*Test.java"> <include name="**/*Test.java"/>
</include> <exclude name="**/*AbstractTest.java"/>
<exclude name="**/*AbstractTest.java">
</exclude>
</fileset> </fileset>
</batchtest> </batchtest>
</junit> </junit>
</target> </target>
<target name="compile-tests" depends="compile"> <target name="compile-tests" depends="compile">
<mkdir dir="${testclassesdir}"> <mkdir dir="${testclassesdir}"/>
</mkdir>
<javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html"> <javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
<src> <src>
<pathelement location="src/test"> <pathelement location="src/test"/>
</pathelement>
</src> </src>
<classpath> <classpath>
<fileset dir="${libdir}"> <fileset dir="${libdir}">
<include name="*.jar"> <include name="*.jar"/>
</include>
</fileset> </fileset>
<pathelement path="${classesdir}"> <pathelement path="${classesdir}"/>
</pathelement>
</classpath> </classpath>
</javac> </javac>
</target> </target>
<target name="javadoc" description="o Generate javadoc" depends="jar">
<mkdir dir="${javadocdir}"> <target name="javadoc" description="Generate javadoc" depends="jar">
</mkdir> <mkdir dir="${javadocdir}"/>
<tstamp> <tstamp>
<format pattern="2003-yyyy" property="year"> <format pattern="2003-yyyy" property="year"/>
</format>
</tstamp> </tstamp>
<property name="copyright" value="Copyright &amp;copy; 2003-2004 Apache Software Foundation. All Rights Reserved."> <property name="copyright" value="Copyright &amp;copy; 2003-2004 The Apache Software Foundation. All Rights Reserved."/>
</property> <property name="title" value="Math 0.1 API"/>
<property name="title" value="Math 0.1 API"> <javadoc bottom="Copyright &amp;copy; 2003-2004 The Apache Software Foundation. All Rights Reserved." windowtitle="Math 0.1 API" use="true" private="true" destdir="${javadocdir}" author="true" doctitle="Math 0.1 API" version="true" sourcepath="src/java" packagenames="org.apache.commons.*.*">
</property>
<javadoc bottom="Copyright &amp;copy; 2003-2004 Apache Software Foundation. All Rights Reserved." windowtitle="Math 0.1 API" use="true" private="true" destdir="${javadocdir}" author="true" doctitle="Math 0.1 API" version="true" sourcepath="src/java" packagenames="org.apache.commons.*.*">
<classpath> <classpath>
<fileset dir="${libdir}"> <fileset dir="${libdir}">
<include name="*.jar"> <include name="*.jar"/>
</include>
</fileset> </fileset>
<pathelement location="target/${final.name}.jar"> <pathelement location="target/${final.name}.jar"/>
</pathelement>
</classpath> </classpath>
</javadoc> </javadoc>
</target> </target>
<target name="get-deps" unless="noget" depends="init"> <target name="get-deps" unless="noget" depends="init">
<get dest="${libdir}/commons-beanutils-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-beanutils/jars/commons-beanutils-1.5.jar"> <get dest="${libdir}/commons-beanutils-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-beanutils/jars/commons-beanutils-1.5.jar"/>
</get> <get dest="${libdir}/commons-collections-2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-collections/jars/commons-collections-2.1.jar"/>
<get dest="${libdir}/commons-collections-2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-collections/jars/commons-collections-2.1.jar"> <get dest="${libdir}/commons-lang-2.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-lang/jars/commons-lang-2.0.jar"/>
</get> <get dest="${libdir}/commons-logging-1.0.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-logging/jars/commons-logging-1.0.3.jar"/>
<get dest="${libdir}/commons-lang-2.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-lang/jars/commons-lang-2.0.jar"> <get dest="${libdir}/commons-discovery-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-discovery/jars/commons-discovery-SNAPSHOT.jar"/>
</get> <get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar"/>
<get dest="${libdir}/commons-logging-1.0.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-logging/jars/commons-logging-1.0.3.jar"> <get dest="${libdir}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/ant/jars/ant-1.5.jar"/>
</get> <get dest="${libdir}/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/ant/jars/ant-optional-1.5.jar"/>
<get dest="${libdir}/commons-discovery-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-discovery/jars/commons-discovery-SNAPSHOT.jar">
</get>
<get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar">
</get>
<get dest="${libdir}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/ant/jars/ant-1.5.jar">
</get>
<get dest="${libdir}/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/ant/jars/ant-optional-1.5.jar">
</get>
</target>
<target name="install-maven">
<get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${repo}/maven/maven-install-latest.jar">
</get>
<unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
</unjar>
</target> </target>
</project> </project>