summaryrefslogtreecommitdiff
path: root/ant/build-common.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ant/build-common.xml')
-rw-r--r--ant/build-common.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/ant/build-common.xml b/ant/build-common.xml
index 23aba6b..9df5eb1 100644
--- a/ant/build-common.xml
+++ b/ant/build-common.xml
@@ -31,7 +31,9 @@
<mkdir dir="${build.dir}/${build.classes}" />
</target>
- <target name="build" depends="prepare,resolve" description="Compile Project">
+ <target name="build" depends="resolve,compile" description="Compile Project"/>
+
+ <target name="compile" depends="prepare">
<javac srcdir="${src.dir}"
destdir="${build.dir}/${build.classes}"
debug="${compile.debug}"
@@ -58,10 +60,6 @@
</delete>
</target>
- <target name="clean-cache" description="Clean the Ivy Cache">
- <ivy:cleancache />
- </target>
-
<target name="jar" depends="build" description="Generate JAR">
<jar destfile="${build.dir}/jars/${ant.project.name}.jar" basedir="${build.dir}/${build.classes}">
<manifest>