32 lines
965 B
XML
32 lines
965 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<project name="geronimo-commonj-1.1-apis" default="dist" basedir=".">
|
|
|
|
<property name="src" location="src/main/java/"/>
|
|
<property name="build" location="build"/>
|
|
<property name="dist" location="target"/>
|
|
|
|
<target name="init">
|
|
<!-- Create the time stamp -->
|
|
<tstamp/>
|
|
<!-- Create the build directory structure used by compile -->
|
|
<mkdir dir="${build}"/>
|
|
</target>
|
|
|
|
<target name="dist" depends="build">
|
|
<mkdir dir="${dist}"/>
|
|
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
|
<jar jarfile="${dist}/geronimo-commonj_1.1_spec-1.0.jar" basedir="${build}"/>
|
|
</target>
|
|
|
|
<target name="build" depends="init">
|
|
<javac srcdir="${src}" destdir="${build}"/>
|
|
</target>
|
|
|
|
<target name="clean" description="clean up" >
|
|
<!-- Delete the ${build} and ${dist} directory trees -->
|
|
<delete dir="${build}"/>
|
|
<delete dir="${dist}"/>
|
|
</target>
|
|
|
|
</project>
|
|
|