* update to ehcache 2.20 (requires slf4j)
* update to groovy 1.7.5 * update to jna 3.2.7 * update to junit 4.8.2 * update to miglayout 3.7.3.1 * update to nekohtml 1.9.14 * update mediainfo windows native libs to 0.7.35
This commit is contained in:
parent
51018d7ae7
commit
92765d5b93
22
build.xml
22
build.xml
|
@ -89,6 +89,14 @@
|
|||
<include name="ehcache-version.properties" />
|
||||
</zipfileset>
|
||||
|
||||
<zipfileset src="${dir.lib}/slf4j.jar">
|
||||
<include name="org/slf4j/**" />
|
||||
</zipfileset>
|
||||
|
||||
<zipfileset src="${dir.lib}/slf4j-jdk.jar">
|
||||
<include name="org/slf4j/**" />
|
||||
</zipfileset>
|
||||
|
||||
<zipfileset src="${dir.lib}/jna.jar">
|
||||
<!-- include classes and native libraries -->
|
||||
<include name="com/sun/jna/**" />
|
||||
|
@ -248,31 +256,31 @@
|
|||
<target name="run-fatjar" depends="fatjar">
|
||||
<java jar="${dir.dist}/fatjar/FileBot_${version}.jar" fork="true" />
|
||||
</target>
|
||||
|
||||
|
||||
<target name="deploy">
|
||||
<!-- ask for sourceforge password -->
|
||||
<input message="Please enter password:" addproperty="sf.password" />
|
||||
|
||||
|
||||
<!-- create fatjar release folder -->
|
||||
<mkdir dir="${dir.dist}/release" />
|
||||
|
||||
|
||||
<!-- copy fatjar and source -->
|
||||
<copy todir="${dir.dist}/release/FileBot_${version}">
|
||||
<fileset dir="${dir.dist}" includes="*-src.zip" />
|
||||
<fileset dir="${dir.dist}/fatjar" includes="*.jar" />
|
||||
</copy>
|
||||
|
||||
|
||||
<!-- deploy source zip first-->
|
||||
<scp todir="rednoah,filebot:${sf.password}@web.sourceforge.net:/home/frs/project/f/fi/filebot/filebot" trust="yes">
|
||||
<fileset dir="${dir.dist}/release" includes="**/*-src.zip" />
|
||||
</scp>
|
||||
|
||||
|
||||
<!-- deploy fatjar afterwards so it will be the latest file release -->
|
||||
<sleep minutes="1" />
|
||||
<scp todir="rednoah,filebot:${sf.password}@web.sourceforge.net:/home/frs/project/f/fi/filebot/filebot" trust="yes">
|
||||
<fileset dir="${dir.dist}/release" includes="**/*.jar"/>
|
||||
<fileset dir="${dir.dist}/release" includes="**/*.jar" />
|
||||
</scp>
|
||||
|
||||
|
||||
<!-- deploy webstart jars -->
|
||||
<scp todir="rednoah,filebot:${sf.password}@web.sourceforge.net:htdocs/webstart" trust="yes">
|
||||
<fileset dir="${dir.dist}/webstart" />
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
<jar href="nekohtml.jar" />
|
||||
<jar href="xercesImpl.jar" />
|
||||
<jar href="ehcache.jar" />
|
||||
<jar href="slf4j.jar" />
|
||||
<jar href="slf4j-jdk.jar" />
|
||||
<jar href="simmetrics.jar" />
|
||||
<jar href="args4j.jar" />
|
||||
<jar href="jna.jar" />
|
||||
|
|
BIN
lib/ehcache.jar
BIN
lib/ehcache.jar
Binary file not shown.
BIN
lib/groovy.jar
BIN
lib/groovy.jar
Binary file not shown.
BIN
lib/jna.jar
BIN
lib/jna.jar
Binary file not shown.
BIN
lib/junit.jar
BIN
lib/junit.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/nekohtml.jar
BIN
lib/nekohtml.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue