summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 0000000..bdc7b91
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,37 @@
+<project name="ZPlayer" default="dist" basedir=".">
+ <!-- set global properties for this build -->
+ <property name="src" location="source" />
+ <property name="build" location="build" />
+ <property name="dist" location="dist" />
+ <property name="external" location="3rdparty" />
+
+ <target name="init">
+ <!-- Create the time stamp -->
+ <!-- <tstamp /> -->
+ <!-- Create the build directory structure used by compile -->
+ <mkdir dir="${build}" />
+ </target>
+
+ <target name="compile" depends="init" description="compile the source ">
+ <!-- Compile the java code from ${src} into ${build} -->
+ <javac source="1.5" target="1.5" srcdir="${src}" destdir="${build}" classpath="${external}"/>
+ </target>
+
+ <target name="dist" depends="compile" description="generate the distribution">
+ <!-- Create the distribution directory -->
+ <mkdir dir="${dist}" />
+ <jar jarfile="${dist}/ZPlayer.jar" basedir="${build}">
+ <fileset dir="${external}" />
+ <manifest>
+ <attribute name="Main-Class" value="itunes.client.swing.ZPlayer" />
+ </manifest>
+ </jar>
+ <!-- <signjar jar="${dist}/ZPlayer.jar" alias="key" storepass="XXXX"/> -->
+ </target>
+
+ <target name="clean" description="clean up">
+ <!-- Delete the ${build} and ${dist} directory trees -->
+ <delete dir="${build}" />
+ <delete dir="${dist}" />
+ </target>
+</project>