o updating gump and ant descriptors.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/graph2/trunk@144640 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cd16de4358
commit
cb9a2dfed9
263
build.xml
263
build.xml
@ -1,186 +1,165 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
build.xml generated by maven from project.xml version 0.8.1
|
||||||
|
on date February 18 2003, time 0945
|
||||||
|
-->
|
||||||
|
|
||||||
<project default="jar" name="commons-graph" basedir=".">
|
<project default="jar" name="commons-graph" basedir=".">
|
||||||
|
<property name="defaulttargetdir" value="target">
|
||||||
<property name="defaulttargetdir" value="target"></property>
|
</property>
|
||||||
<property name="classesdir" value="target/classes"></property>
|
<property name="libdir" value="target/lib">
|
||||||
<property name="testclassesdir" value="target/test-classes"></property>
|
</property>
|
||||||
<property name="testreportdir" value="target/test-reports"></property>
|
<property name="classesdir" value="target/classes">
|
||||||
|
</property>
|
||||||
|
<property name="testclassesdir" value="target/test-classes">
|
||||||
|
</property>
|
||||||
|
<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-graph-0.8.1">
|
||||||
<property name="resourcedir" value="."></property>
|
</property>
|
||||||
|
|
||||||
<property name="distdir" value="dist"></property>
|
|
||||||
<property name="javadocdir" value="target/docs/apidocs"></property>
|
|
||||||
<property name="final.name" value="commons-graph-0.8.1"></property>
|
|
||||||
|
|
||||||
<target name="init" description="o Initializes some properties">
|
<target name="init" description="o Initializes some properties">
|
||||||
<mkdir dir="lib"></mkdir>
|
<mkdir dir="${libdir}">
|
||||||
|
</mkdir>
|
||||||
<condition property="noget">
|
<condition property="noget">
|
||||||
<equals arg2="only" arg1="${build.sysclasspath}"></equals>
|
<equals arg2="only" arg1="${build.sysclasspath}">
|
||||||
|
</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>
|
</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>
|
<pathelement location="src/java">
|
||||||
|
</pathelement>
|
||||||
</src>
|
</src>
|
||||||
<classpath>
|
<classpath>
|
||||||
<fileset dir="lib">
|
<fileset dir="${libdir}">
|
||||||
<include name="*.jar"></include>
|
<include name="*.jar">
|
||||||
|
</include>
|
||||||
</fileset>
|
</fileset>
|
||||||
</classpath>
|
</classpath>
|
||||||
</javac>
|
</javac>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="jar" description="o Create the jar" depends="compile,test">
|
<target name="jar" description="o Create the jar" depends="compile,test">
|
||||||
|
<jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}">
|
||||||
<jar jarfile="target/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}"></jar>
|
</jar>
|
||||||
|
|
||||||
</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>
|
<delete dir="${defaulttargetdir}">
|
||||||
<delete dir="${distdir}"></delete>
|
</delete>
|
||||||
|
<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>
|
<mkdir dir="dist">
|
||||||
|
</mkdir>
|
||||||
<copy todir="dist">
|
<copy todir="dist">
|
||||||
<fileset dir="${defaulttargetdir}"></fileset>
|
<fileset dir="${defaulttargetdir}" includes="*.jar">
|
||||||
|
</fileset>
|
||||||
|
<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>
|
<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>
|
</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>
|
</sysproperty>
|
||||||
<formatter type="xml"></formatter>
|
<formatter type="xml">
|
||||||
<formatter usefile="true" type="plain"></formatter>
|
</formatter>
|
||||||
<classpath>
|
<formatter usefile="false" type="plain">
|
||||||
<fileset dir="lib">
|
</formatter>
|
||||||
<include name="*.jar"></include>
|
<classpath>
|
||||||
</fileset>
|
<fileset dir="${libdir}">
|
||||||
<pathelement path="${testclassesdir}"></pathelement>
|
<include name="*.jar">
|
||||||
<pathelement path="${classesdir}"></pathelement>
|
</include>
|
||||||
</classpath>
|
</fileset>
|
||||||
<batchtest todir="${testreportdir}">
|
<pathelement path="${testclassesdir}">
|
||||||
<fileset dir="src/test">
|
</pathelement>
|
||||||
|
<pathelement path="${classesdir}">
|
||||||
<include name="**/*Test.java"></include>
|
</pathelement>
|
||||||
|
</classpath>
|
||||||
|
<batchtest todir="${testreportdir}">
|
||||||
|
<fileset dir="src/test">
|
||||||
|
<include name="**/*Test.java">
|
||||||
|
</include>
|
||||||
</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>
|
</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>
|
<pathelement location="src/test">
|
||||||
</src>
|
</pathelement>
|
||||||
<classpath>
|
</src>
|
||||||
<fileset dir="lib">
|
<classpath>
|
||||||
<include name="*.jar"></include>
|
<fileset dir="${libdir}">
|
||||||
</fileset>
|
<include name="*.jar">
|
||||||
<pathelement path="${classesdir}"></pathelement>
|
</include>
|
||||||
</classpath>
|
</fileset>
|
||||||
</javac>
|
<pathelement path="${classesdir}">
|
||||||
|
</pathelement>
|
||||||
|
</classpath>
|
||||||
|
</javac>
|
||||||
|
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="javadoc" description="o Generate javadoc" depends="jar">
|
<target name="javadoc" description="o Generate javadoc" depends="jar">
|
||||||
|
<mkdir dir="${javadocdir}">
|
||||||
|
</mkdir>
|
||||||
<mkdir dir="${javadocdir}"></mkdir>
|
|
||||||
|
|
||||||
|
|
||||||
<tstamp>
|
<tstamp>
|
||||||
<format pattern="2001-yyyy" property="year"></format>
|
<format pattern="2001-yyyy" property="year">
|
||||||
|
</format>
|
||||||
</tstamp>
|
</tstamp>
|
||||||
|
<property name="copyright" value="Copyright &copy; Apache Software Foundation. All Rights Reserved.">
|
||||||
<property name="copyright" value="Copyright &copy; Apache Software Foundation. All Rights Reserved."></property>
|
</property>
|
||||||
|
<property name="title" value="Graph 0.8.1 API">
|
||||||
<property name="title" value="Graph 0.8.1 API"></property>
|
</property>
|
||||||
|
|
||||||
<javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.graph.*">
|
<javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.graph.*">
|
||||||
<classpath>
|
<classpath>
|
||||||
<fileset dir="lib">
|
<fileset dir="${libdir}">
|
||||||
<include name="*.jar"></include>
|
<include name="*.jar">
|
||||||
|
</include>
|
||||||
</fileset>
|
</fileset>
|
||||||
<pathelement location="target/${final.name}.jar"></pathelement>
|
<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}/log4j-1.1.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/log4j/jars/log4j-1.1.3.jar">
|
||||||
|
</get>
|
||||||
<get dest="lib/log4j-1.1.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/log4j/jars/log4j-1.1.3.jar"></get>
|
<get dest="${libdir}/jdepend-2.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/jdepend/jars/jdepend-2.2.jar">
|
||||||
<get dest="lib/jdepend-2.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/jdepend/jars/jdepend-2.2.jar"></get>
|
</get>
|
||||||
<get dest="lib/nsuml-0.4.20.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/nsuml/jars/nsuml-0.4.20.jar"></get>
|
<get dest="${libdir}/commons-collections-2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-2.1.jar">
|
||||||
<get dest="lib/commons-collections-2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-2.1.jar"></get>
|
</get>
|
||||||
<get dest="lib/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}/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar">
|
||||||
<get dest="lib/xml-apis-1.0.b2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xml-apis/jars/xml-apis-1.0.b2.jar"></get>
|
</get>
|
||||||
|
<get dest="${libdir}/xml-apis-1.0.b2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xml-apis/jars/xml-apis-1.0.b2.jar">
|
||||||
<get dest="lib/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar"></get>
|
</get>
|
||||||
<get dest="lib/ant-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.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="lib/ant-optional-1.5.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/ant/jars/ant-optional-1.5.jar"></get>
|
</get>
|
||||||
|
<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.ibiblio.org/maven/ant/jars/ant-optional-1.5.jar">
|
||||||
|
</get>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<target name="install-maven">
|
<target name="install-maven">
|
||||||
|
<get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${maven.repo.remote}/maven/maven-install-latest.jar">
|
||||||
|
</get>
|
||||||
|
<unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
|
||||||
<get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${maven.repo.remote}/maven/maven-install-latest.jar"></get>
|
</unjar>
|
||||||
|
|
||||||
<unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar"></unjar>
|
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
||||||
14
gump.xml
14
gump.xml
@ -4,7 +4,7 @@
|
|||||||
<description>Graph Representation and Manipulation Library</description>
|
<description>Graph Representation and Manipulation Library</description>
|
||||||
<url href="http://jakarta.apache.org/commons/graph/">
|
<url href="http://jakarta.apache.org/commons/graph/">
|
||||||
</url>
|
</url>
|
||||||
<cvs module="jakarta-commons-sandbox/graph2" repository="jakarta">
|
<cvs module="jakarta-commons-sandbox/graph2" repository="">
|
||||||
</cvs>
|
</cvs>
|
||||||
<project name="commons-graph">
|
<project name="commons-graph">
|
||||||
<ant buildfile="build.xml" target="dist">
|
<ant buildfile="build.xml" target="dist">
|
||||||
@ -12,19 +12,17 @@
|
|||||||
</property>
|
</property>
|
||||||
</ant>
|
</ant>
|
||||||
<package>org.apache.commons.graph</package>
|
<package>org.apache.commons.graph</package>
|
||||||
<depend project="commons-collections">
|
<depend project="commons-collections:commons-collections">
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="jakarta-ant">
|
<depend project="jakarta-ant">
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="jdepend">
|
<depend project="jdepend:jdepend">
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="junit">
|
<depend project="junit:junit">
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="log4j">
|
<depend project="log4j:log4j">
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="nsuml">
|
<depend project="xml-apis:xml-apis">
|
||||||
</depend>
|
|
||||||
<depend project="xml-apis">
|
|
||||||
</depend>
|
</depend>
|
||||||
<depend project="xml-xerces">
|
<depend project="xml-xerces">
|
||||||
</depend>
|
</depend>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user