2009-05-21 10:00:48 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2008-12-31 20:11:27 +00:00
|
|
|
<project name="FileBot" default="jar">
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2007-12-23 19:28:04 +00:00
|
|
|
<property name="title" value="${ant.project.name}" />
|
2008-12-31 20:11:27 +00:00
|
|
|
<property name="version" value="1.9" />
|
2007-12-23 19:28:04 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<tstamp>
|
|
|
|
<format property="today" pattern="yyyy-MM-dd" />
|
|
|
|
</tstamp>
|
2007-12-23 19:28:04 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<property name="dir.source" location="${basedir}/source" />
|
|
|
|
<property name="dir.test" location="${basedir}/test" />
|
|
|
|
<property name="dir.build" location="${basedir}/build" />
|
|
|
|
<property name="dir.dist" location="${basedir}/dist" />
|
|
|
|
<property name="dir.lib" location="${basedir}/lib" />
|
2008-02-13 20:08:06 +00:00
|
|
|
|
2007-12-23 19:28:04 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<target name="jar" depends="build">
|
2008-07-30 22:37:01 +00:00
|
|
|
<!-- create dist dir -->
|
|
|
|
<mkdir dir="${dir.dist}" />
|
2008-12-31 20:11:27 +00:00
|
|
|
|
|
|
|
<!-- main jar -->
|
|
|
|
<jar destfile="${dir.dist}/filebot.jar">
|
|
|
|
<fileset dir="${dir.build}" excludes="**/*Test*" />
|
|
|
|
</jar>
|
|
|
|
|
|
|
|
<!-- extra jar containing all the unit tests -->
|
|
|
|
<jar destfile="${dir.dist}/filebot-test.jar">
|
|
|
|
<fileset dir="${dir.build}" includes="**/*Test*" />
|
|
|
|
</jar>
|
2009-08-02 11:51:28 +00:00
|
|
|
|
|
|
|
<!-- source zip -->
|
|
|
|
<zip destfile="${dir.dist}/filebot-${version}-src.zip">
|
|
|
|
<fileset dir="source" />
|
|
|
|
<fileset dir="test" />
|
|
|
|
</zip>
|
2008-12-31 20:11:27 +00:00
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="fatjar" depends="jar">
|
|
|
|
<!-- create dist/fatjar dir -->
|
|
|
|
<mkdir dir="${dir.dist}/fatjar" />
|
|
|
|
|
2009-08-02 11:51:28 +00:00
|
|
|
<jar destfile="${dir.dist}/fatjar/FileBot_${version}.jar" filesetmanifest="merge" duplicate="fail">
|
2009-07-31 00:27:07 +00:00
|
|
|
<manifest>
|
|
|
|
<attribute name="Built-By" value="${user.name}" />
|
|
|
|
<attribute name="Built-Date" value="${today}" />
|
|
|
|
<attribute name="Application-Name" value="${title}" />
|
|
|
|
<attribute name="Application-Version" value="${version}" />
|
|
|
|
<attribute name="Main-Class" value="net.sourceforge.filebot.Main" />
|
|
|
|
</manifest>
|
|
|
|
|
2009-07-29 22:09:10 +00:00
|
|
|
<!-- include main jar -->
|
|
|
|
<zipfileset src="${dir.dist}/filebot.jar" />
|
2009-07-31 00:27:07 +00:00
|
|
|
|
2008-06-09 18:41:06 +00:00
|
|
|
<!-- include libs -->
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/xercesImpl.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="org/apache/**" />
|
|
|
|
<include name="org/w3c/dom/html/**" />
|
2007-12-23 19:28:04 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/nekohtml.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="org/cyberneko/html/**" />
|
2008-02-13 20:08:06 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/simmetrics.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="uk/ac/shef/wit/simmetrics/**" />
|
2008-06-09 18:41:06 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/glazedlists.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="ca/odell/glazedlists/**" />
|
2008-10-12 20:25:23 +00:00
|
|
|
</zipfileset>
|
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/miglayout.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="net/miginfocom/**" />
|
2008-02-13 20:08:06 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2009-08-17 17:23:29 +00:00
|
|
|
<zipfileset src="${dir.lib}/xmlrpc.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="redstone/xmlrpc/**" />
|
2008-02-13 20:08:06 +00:00
|
|
|
</zipfileset>
|
2008-10-12 20:25:23 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<zipfileset src="${dir.lib}/args4j.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="org/kohsuke/args4j/**" />
|
2008-07-30 22:37:01 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2009-02-02 20:50:04 +00:00
|
|
|
<zipfileset src="${dir.lib}/ehcache.jar">
|
2009-04-11 23:27:10 +00:00
|
|
|
<include name="net/sf/ehcache/**" />
|
2009-04-05 10:08:00 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2009-04-05 10:08:00 +00:00
|
|
|
<zipfileset src="${dir.lib}/jna.jar">
|
|
|
|
<!-- include classes and native libraries -->
|
|
|
|
<include name="com/sun/jna/**" />
|
2009-04-11 23:27:10 +00:00
|
|
|
</zipfileset>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2009-09-22 21:23:39 +00:00
|
|
|
<zipfileset src="${dir.lib}/groovy.jar">
|
|
|
|
<include name="groovy*/**" />
|
|
|
|
<include name="org/codehaus/groovy/**" />
|
2009-04-11 23:27:10 +00:00
|
|
|
</zipfileset>
|
2009-07-27 22:34:42 +00:00
|
|
|
|
2009-06-02 11:32:30 +00:00
|
|
|
<zipfileset src="${dir.lib}/sublight-ws.jar">
|
|
|
|
<include name="net/sublight/webservice/**" />
|
|
|
|
</zipfileset>
|
2009-07-27 22:34:42 +00:00
|
|
|
|
2009-06-30 20:49:09 +00:00
|
|
|
<zipfileset src="${dir.lib}/junrar-custom.jar">
|
|
|
|
<include name="de/innosystec/unrar/**" />
|
|
|
|
</zipfileset>
|
2007-12-23 19:28:04 +00:00
|
|
|
</jar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
2009-07-27 22:34:42 +00:00
|
|
|
<target name="webstart" depends="jar">
|
|
|
|
<!-- create dirs -->
|
|
|
|
<mkdir dir="${dir.dist}/webstart" />
|
|
|
|
|
|
|
|
<!-- copy jars -->
|
|
|
|
<copy todir="${dir.dist}/webstart">
|
|
|
|
<fileset dir="${dir.dist}" includes="filebot.jar" />
|
|
|
|
<fileset dir="${dir.lib}" includes="*.jar" excludes="junit.jar, jna.jar" />
|
|
|
|
</copy>
|
2009-08-02 11:51:28 +00:00
|
|
|
|
2009-07-27 22:34:42 +00:00
|
|
|
<!-- copy jna.jar without native libs -->
|
|
|
|
<jar destfile="${dir.dist}/webstart/jna.jar">
|
|
|
|
<zipfileset src="${dir.lib}/jna.jar" includes="**/*.class" />
|
|
|
|
</jar>
|
|
|
|
|
|
|
|
<!-- create native lib jars -->
|
|
|
|
<antcall target="webstart-nativelib">
|
2009-07-29 22:09:10 +00:00
|
|
|
<param name="arch" value="win32-x86" />
|
2009-07-27 22:34:42 +00:00
|
|
|
</antcall>
|
|
|
|
<antcall target="webstart-nativelib">
|
|
|
|
<param name="arch" value="win32-amd64" />
|
|
|
|
</antcall>
|
|
|
|
<antcall target="webstart-nativelib">
|
|
|
|
<param name="arch" value="linux-i386" />
|
|
|
|
</antcall>
|
|
|
|
<antcall target="webstart-nativelib">
|
|
|
|
<param name="arch" value="linux-amd64" />
|
|
|
|
</antcall>
|
|
|
|
<antcall target="webstart-nativelib">
|
|
|
|
<param name="arch" value="darwin" />
|
|
|
|
</antcall>
|
|
|
|
|
|
|
|
<!-- sign main jar and native lib jars -->
|
|
|
|
<apply executable="pack200">
|
2009-08-15 11:47:24 +00:00
|
|
|
<!-- workaround for bug 6575373, see http://bugs.sun.com/view_bug.do?bug_id=6575373 -->
|
|
|
|
<arg line="--segment-limit=-1" />
|
2009-07-27 22:34:42 +00:00
|
|
|
<arg line="--repack" />
|
|
|
|
<srcfile />
|
2009-08-15 11:47:24 +00:00
|
|
|
<fileset dir="${dir.dist}/webstart" includes="filebot.jar" />
|
2009-07-27 22:34:42 +00:00
|
|
|
</apply>
|
2009-08-15 11:47:24 +00:00
|
|
|
|
2009-07-27 22:34:42 +00:00
|
|
|
<signjar alias="filebot" keystore="filebot.keystore" storepass="secret">
|
2009-08-15 11:47:24 +00:00
|
|
|
<fileset id="signjar" dir="${dir.dist}/webstart" includes="filebot.jar, native/*.jar" />
|
2009-07-27 22:34:42 +00:00
|
|
|
</signjar>
|
|
|
|
|
|
|
|
<!-- pack200 all jars -->
|
|
|
|
<apply executable="pack200" dest="${dir.dist}/webstart">
|
2009-08-15 11:47:24 +00:00
|
|
|
<!-- workaround for bug 6575373, see http://bugs.sun.com/view_bug.do?bug_id=6575373 -->
|
|
|
|
<arg line="--segment-limit=-1" />
|
2009-07-27 22:34:42 +00:00
|
|
|
<targetfile />
|
|
|
|
<srcfile />
|
|
|
|
<fileset dir="${dir.dist}/webstart" includes="*.jar" />
|
|
|
|
<mapper type="glob" from="*.jar" to="*.jar.pack.gz" />
|
|
|
|
</apply>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="webstart-nativelib">
|
|
|
|
<!-- create temp dir -->
|
|
|
|
<mkdir dir="${dir.dist}/webstart/native/${arch}" />
|
|
|
|
|
|
|
|
<!-- copy native libs to temp dir -->
|
|
|
|
<copy todir="${dir.dist}/webstart/native/${arch}" flatten="true">
|
|
|
|
<zipfileset src="${dir.lib}/jna.jar" includes="com/sun/jna/${arch}/*" />
|
|
|
|
<fileset dir="${dir.lib}/native" includes="${arch}/*" />
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
<!-- create native lib jar -->
|
|
|
|
<jar destfile="${dir.dist}/webstart/native/${arch}.jar" basedir="${dir.dist}/webstart/native/${arch}" />
|
|
|
|
|
|
|
|
<!-- delete temp dir -->
|
|
|
|
<delete dir="${dir.dist}/webstart/native/${arch}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="genkey">
|
|
|
|
<genkey alias="filebot" keystore="filebot.keystore" storepass="secret" validity="3650" dname="CN=${user.name}" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
2008-06-09 18:41:06 +00:00
|
|
|
<target name="build">
|
2007-12-23 19:28:04 +00:00
|
|
|
<!-- create build dir -->
|
2008-06-09 18:41:06 +00:00
|
|
|
<mkdir dir="${dir.build}" />
|
2007-12-23 19:28:04 +00:00
|
|
|
|
|
|
|
<!-- compile -->
|
2008-12-31 20:11:27 +00:00
|
|
|
<javac srcdir="${dir.source}:${dir.test}" destdir="${dir.build}" source="1.6" encoding="utf-8">
|
2007-12-23 19:28:04 +00:00
|
|
|
<classpath>
|
2008-06-09 18:41:06 +00:00
|
|
|
<fileset dir="${dir.lib}" includes="*.jar" />
|
2007-12-23 19:28:04 +00:00
|
|
|
</classpath>
|
|
|
|
</javac>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2007-12-23 19:28:04 +00:00
|
|
|
<!-- copy resources -->
|
2008-06-09 18:41:06 +00:00
|
|
|
<copy todir="${dir.build}">
|
|
|
|
<fileset dir="${dir.source}">
|
2009-07-27 22:34:42 +00:00
|
|
|
<exclude name="**/*.java" />
|
2007-12-23 19:28:04 +00:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="clean">
|
2008-07-30 22:37:01 +00:00
|
|
|
<delete dir="${dir.dist}" />
|
2008-06-09 18:41:06 +00:00
|
|
|
<delete dir="${dir.build}" />
|
2007-12-23 19:28:04 +00:00
|
|
|
</target>
|
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
|
|
|
|
<target name="test" depends="jar">
|
|
|
|
<junit printsummary="yes" fork="true">
|
2008-06-09 18:41:06 +00:00
|
|
|
<classpath>
|
2008-12-31 20:11:27 +00:00
|
|
|
<fileset dir="${dir.dist}" includes="*.jar" />
|
|
|
|
<fileset dir="${dir.lib}" includes="*.jar" />
|
2008-06-09 18:41:06 +00:00
|
|
|
</classpath>
|
2008-12-31 20:11:27 +00:00
|
|
|
|
2008-06-09 18:41:06 +00:00
|
|
|
<formatter type="plain" />
|
2008-12-31 20:11:27 +00:00
|
|
|
|
|
|
|
<test name="net.sourceforge.filebot.AllTests" outfile="test-report" />
|
2008-06-09 18:41:06 +00:00
|
|
|
</junit>
|
|
|
|
</target>
|
2008-12-31 20:11:27 +00:00
|
|
|
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<target name="test-fatjar" depends="fatjar">
|
|
|
|
<junit printsummary="yes" fork="true">
|
|
|
|
<classpath>
|
2009-08-17 17:23:29 +00:00
|
|
|
<pathelement location="${dir.dist}/fatjar/FileBot_${version}.jar" />
|
2008-12-31 20:11:27 +00:00
|
|
|
<pathelement location="${dir.dist}/filebot-test.jar" />
|
|
|
|
<pathelement location="${dir.lib}/junit.jar" />
|
|
|
|
</classpath>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<formatter type="plain" />
|
2008-03-02 17:02:37 +00:00
|
|
|
|
2008-12-31 20:11:27 +00:00
|
|
|
<test name="net.sourceforge.filebot.AllTests" outfile="test-report" />
|
|
|
|
</junit>
|
|
|
|
</target>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
|
|
|
|
2009-02-15 21:11:03 +00:00
|
|
|
<target name="run-fatjar" depends="fatjar">
|
2009-08-17 17:23:29 +00:00
|
|
|
<java jar="${dir.dist}/fatjar/FileBot_${version}.jar" fork="true" />
|
2009-02-15 21:11:03 +00:00
|
|
|
</target>
|
2009-06-02 11:32:30 +00:00
|
|
|
|
2008-03-02 17:02:37 +00:00
|
|
|
</project>
|