From: <ma...@us...> - 2010-04-04 19:49:00
|
Revision: 3310 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3310&view=rev Author: matzon Date: 2010-04-04 19:48:53 +0000 (Sun, 04 Apr 2010) Log Message: ----------- trusted and sealed lzma, needed by Java update 19 Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2010-04-04 19:46:42 UTC (rev 3309) +++ trunk/LWJGL/platform_build/build-applet.xml 2010-04-04 19:48:53 UTC (rev 3310) @@ -78,6 +78,7 @@ <zipfileset dir="${lwjgl.res}" includes="Footsteps.wav, ILtest.tga, Missing_you.mod"/> </zip> <signjar jar="applet/lwjgl_util_applet.jar" alias="${alias}" keystore="${keystore}" storepass="${password}"/> + <signjar jar="applet/lzma.jar" alias="${alias}" keystore="${keystore}" storepass="${password}"/> <!-- LZMA only, for 1.4 only clients --> <antcall target="compress-resource"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-07 10:28:11
|
Revision: 3311 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3311&view=rev Author: matzon Date: 2010-04-07 10:28:05 +0000 (Wed, 07 Apr 2010) Log Message: ----------- make sure we overwrite existing files Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2010-04-04 19:48:53 UTC (rev 3310) +++ trunk/LWJGL/platform_build/build-applet.xml 2010-04-07 10:28:05 UTC (rev 3311) @@ -68,12 +68,12 @@ <fileset dir="${lwjgl.res}" includes="applet*"/> </jar> - <copy file="${lwjgl.lib}/lwjgl.jar" todir="applet"/> - <copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="applet"/> - <copy file="${lwjgl.lib}/lwjgl_util_applet.jar" todir="applet"/> - <copy file="${lwjgl.lib}/lwjgl_util.jar" todir="applet"/> - <copy file="${lwjgl.lib}/jinput.jar" todir="applet"/> - <copy file="${lwjgl.lib}/lzma.jar" todir="applet"/> + <copy file="${lwjgl.lib}/lwjgl.jar" todir="applet" overwrite="true"/> + <copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="applet" overwrite="true"/> + <copy file="${lwjgl.lib}/lwjgl_util_applet.jar" todir="applet" overwrite="true"/> + <copy file="${lwjgl.lib}/lwjgl_util.jar" todir="applet" overwrite="true"/> + <copy file="${lwjgl.lib}/jinput.jar" todir="applet" overwrite="true"/> + <copy file="${lwjgl.lib}/lzma.jar" todir="applet" overwrite="true"/> <zip destfile="applet/res.jar"> <zipfileset dir="${lwjgl.res}" includes="Footsteps.wav, ILtest.tga, Missing_you.mod"/> </zip> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2010-08-31 19:30:22
|
Revision: 3407 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3407&view=rev Author: kappa1 Date: 2010-08-31 19:30:15 +0000 (Tue, 31 Aug 2010) Log Message: ----------- attempt to clean nightly builds of unused files Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2010-08-28 16:39:16 UTC (rev 3406) +++ trunk/LWJGL/platform_build/build-applet.xml 2010-08-31 19:30:15 UTC (rev 3407) @@ -147,5 +147,8 @@ <param name="input" value="applet/basic/solaris_natives.jar"/> <param name="output" value="applet/advance/solaris_natives.jar.lzma"/> </antcall> + + <delete file="applet/*.jar"/> + <delete file="applet/*.lzma"/> </target> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2010-08-31 20:10:18
|
Revision: 3408 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3408&view=rev Author: kappa1 Date: 2010-08-31 20:10:12 +0000 (Tue, 31 Aug 2010) Log Message: ----------- second attempt to clean applet package of unused files Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2010-08-31 19:30:15 UTC (rev 3407) +++ trunk/LWJGL/platform_build/build-applet.xml 2010-08-31 20:10:12 UTC (rev 3408) @@ -148,7 +148,8 @@ <param name="output" value="applet/advance/solaris_natives.jar.lzma"/> </antcall> - <delete file="applet/*.jar"/> - <delete file="applet/*.lzma"/> + <delete> + <fileset dir="applet" includes="*.jar, *.lzma"/> + </delete> </target> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2010-09-01 18:12:13
|
Revision: 3409 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3409&view=rev Author: kappa1 Date: 2010-09-01 18:12:06 +0000 (Wed, 01 Sep 2010) Log Message: ----------- Applet package in nightly builds now cleaned of unused files so extra code to build file can be removed. Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2010-08-31 20:10:12 UTC (rev 3408) +++ trunk/LWJGL/platform_build/build-applet.xml 2010-09-01 18:12:06 UTC (rev 3409) @@ -147,9 +147,5 @@ <param name="input" value="applet/basic/solaris_natives.jar"/> <param name="output" value="applet/advance/solaris_natives.jar.lzma"/> </antcall> - - <delete> - <fileset dir="applet" includes="*.jar, *.lzma"/> - </delete> </target> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2011-01-19 21:15:30
|
Revision: 3471 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3471&view=rev Author: matzon Date: 2011-01-19 21:15:21 +0000 (Wed, 19 Jan 2011) Log Message: ----------- dont depend on all for the applet target Modified Paths: -------------- trunk/LWJGL/platform_build/build-applet.xml Modified: trunk/LWJGL/platform_build/build-applet.xml =================================================================== --- trunk/LWJGL/platform_build/build-applet.xml 2011-01-19 21:14:57 UTC (rev 3470) +++ trunk/LWJGL/platform_build/build-applet.xml 2011-01-19 21:15:21 UTC (rev 3471) @@ -3,7 +3,7 @@ <!-- Create our packer task --> <taskdef name="pack200" classname="com.sun.tools.apache.ant.pack200.Pack200Task" classpath="platform_build/Pack200Task.jar"/> - <target name="applet" depends="all"> + <target name="applet"> <antcall target="-applet"> <param name="keystore" value="applet/lwjglkeystore"/> <param name="alias" value="lwjgl"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |