My local settings forced downloads in Ant to Apache instead of Ibiblio. I've corrected this.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141272 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
73d8935012
commit
55e74ff9d0
30
build.xml
30
build.xml
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--build.xml generated by maven from project.xml version 1.0-dev
|
||||
on date June 1 2004, time 1737-->
|
||||
on date June 2 2004, time 1044-->
|
||||
|
||||
<project default="jar" name="commons-math" basedir=".">
|
||||
<property name="defaulttargetdir" value="target">
|
||||
|
@ -33,7 +33,8 @@
|
|||
</mkdir>
|
||||
<javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
|
||||
<src>
|
||||
<pathelement location="src/java"/>
|
||||
<pathelement location="src/java">
|
||||
</pathelement>
|
||||
</src>
|
||||
<classpath>
|
||||
<fileset dir="${libdir}">
|
||||
|
@ -44,8 +45,10 @@
|
|||
</javac>
|
||||
<copy todir="${testclassesdir}">
|
||||
<fileset dir="src/test">
|
||||
<include name="**/*.xml"/>
|
||||
<include name="**/*.txt"/>
|
||||
<include name="**/*.xml">
|
||||
</include>
|
||||
<include name="**/*.txt">
|
||||
</include>
|
||||
</fileset>
|
||||
</copy>
|
||||
</target>
|
||||
|
@ -108,7 +111,8 @@
|
|||
</mkdir>
|
||||
<javac destdir="${testclassesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
|
||||
<src>
|
||||
<pathelement location="src/test"/>
|
||||
<pathelement location="src/test">
|
||||
</pathelement>
|
||||
</src>
|
||||
<classpath>
|
||||
<fileset dir="${libdir}">
|
||||
|
@ -131,7 +135,7 @@
|
|||
</property>
|
||||
<property name="title" value="Math 1.0-dev API">
|
||||
</property>
|
||||
<javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="/home/mdiggory/workspace/jakarta-commons/math/src/java" packagenames="org.apache.commons.math.*">
|
||||
<javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.math.*">
|
||||
<classpath>
|
||||
<fileset dir="${libdir}">
|
||||
<include name="*.jar">
|
||||
|
@ -143,19 +147,19 @@
|
|||
</javadoc>
|
||||
</target>
|
||||
<target name="get-deps" unless="noget" depends="init">
|
||||
<get dest="${libdir}/commons-collections-3.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-collections/jars/commons-collections-3.0.jar">
|
||||
<get dest="${libdir}/commons-collections-3.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-collections/jars/commons-collections-3.0.jar">
|
||||
</get>
|
||||
<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-lang-2.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//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-logging-1.0.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-logging/jars/commons-logging-1.0.3.jar">
|
||||
</get>
|
||||
<get dest="${libdir}/commons-discovery-0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/commons-discovery/jars/commons-discovery-0.2.jar">
|
||||
<get dest="${libdir}/commons-discovery-0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-discovery/jars/commons-discovery-0.2.jar">
|
||||
</get>
|
||||
<get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.apache.org/dist/java-repository/junit/jars/junit-3.8.1.jar">
|
||||
<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 dest="${libdir}/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//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}/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//ant/jars/ant-optional-1.5.jar">
|
||||
</get>
|
||||
</target>
|
||||
<target name="install-maven">
|
||||
|
|
Loading…
Reference in New Issue