aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-java/joda-convert/files/1.2-build.xml')
-rw-r--r--dev-java/joda-convert/files/1.2-build.xml99
1 files changed, 0 insertions, 99 deletions
diff --git a/dev-java/joda-convert/files/1.2-build.xml b/dev-java/joda-convert/files/1.2-build.xml
deleted file mode 100644
index 07fe6e0ad..000000000
--- a/dev-java/joda-convert/files/1.2-build.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0"?>
-<project name="Joda convert" default="all" basedir=".">
- <target name="init" description="Sets build properties">
- <!-- package configuration -->
- <property name="package.version" value="devel"/>
- <!-- directory locations -->
- <property name="src" value="${basedir}/src"/>
- <property name="src.lib" value="${src}/main/java"/>
- <property name="src.test" value="${src}/test/java"/>
- <property name="build" value="${basedir}/build"/>
- <property name="build.lib" value="${build}/lib"/>
- <property name="build.test" value="${build}/test"/>
- <property name="doc" value="${basedir}/doc"/>
- <property name="doc.api" value="${doc}/api"/>
- <!-- external dependencies -->
- <property name="junit.jar" value="junit.jar"/>
- <!-- classpaths -->
- <path id="project.class.path">
- </path>
- <path id="test.class.path">
- <!--pathelement location="${junit.jar}"/--> <!-- handled by Gentoo's ANT_TASKS -->
- </path>
- <path id="build.lib.class.path">
- <pathelement location="${build.lib}"/>
- </path>
- <path id="build.test.class.path">
- <pathelement location="${build.test}"/>
- </path>
- </target>
- <target name="all" depends="jar,javadoc"
- description="Pseudo-target that builds JAR and Javadoc"/>
- <target name="build-lib" depends="init"
- description="Compiles the library classes">
- <mkdir dir="${build.lib}"/>
- <javac destdir="${build.lib}" srcdir="${src.lib}" debug="true"
- deprecation="true" includeantruntime="false">
- <classpath refid="project.class.path"/>
- <classpath refid="build.lib.class.path"/>
- <!--compilerarg line="-Xlint:unchecked"/-->
- </javac>
- <!--copy todir="${build}">
- <mappedresources>
- <fileset dir="${src}" includes="**/test/test.fits*"/>
- <globmapper from="*" to="*"/>
- </mappedresources>
- </copy-->
- </target>
- <target name="build-tests" depends="build-lib"
- description="Compiles the test classes">
- <mkdir dir="${build.test}"/>
- <javac destdir="${build.test}" srcdir="${src.test}" debug="true"
- deprecation="true" includeantruntime="false">
- <classpath refid="project.class.path"/>
- <classpath refid="test.class.path"/>
- <classpath refid="build.lib.class.path"/>
- </javac>
- </target>
- <target name="build" depends="build-lib"
- description="Alias for build-lib"/>
- <target name="test" depends="build-tests">
- <junit>
- <classpath refid="project.class.path"/>
- <classpath refid="test.class.path"/>
- <classpath refid="build.lib.class.path"/>
- <classpath refid="build.test.class.path"/>
- <formatter type="brief" usefile="false" />
- <batchtest>
- <fileset dir="${build.test}">
- <include name="**/*.class" />
- <exclude name="**/*$*.class" />
- </fileset>
- </batchtest>
- </junit>
- </target>
- <target name="javadoc" depends="init"
- description="Generates Javadoc API documentation">
- <mkdir dir="${doc.api}"/>
- <javadoc packagenames="*"
- sourcepath="${src.lib}" destdir="${doc.api}"
- author="true" version="true"
- use="true" private="true"/>
- </target>
- <target name="jar" depends="build-lib"
- description="Builds a project JAR file">
- <jar basedir="${build.lib}" jarfile="${build}/joda-convert.jar">
- <manifest>
- <attribute name="Version" value="${package.version}"/>
- </manifest>
- </jar>
- </target>
- <target name="clean" depends="init"
- description="Erase all generated files and dirs">
- <delete dir="${build}" verbose="true"/>
- <delete dir="${doc}" verbose="true"/>
- <delete verbose="true">
- <fileset dir="${basedir}" includes="*.jar"/>
- </delete>
- </target>
-</project>