Niggling bits.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@916 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -45,11 +45,16 @@
|
|||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- cleans out the installed application -->
|
<!-- cleans out the built application -->
|
||||||
<target name="clean">
|
<target name="clean">
|
||||||
<delete dir="${deploy.dir}"/>
|
<delete dir="${deploy.dir}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- cleans out the installed application -->
|
||||||
|
<target name="purge" depends="clean">
|
||||||
|
<delete dir="${install.dir}"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
<!-- build the java class files -->
|
<!-- build the java class files -->
|
||||||
<target name="compile" depends="prepare">
|
<target name="compile" depends="prepare">
|
||||||
<javac srcdir="${src.dir}" destdir="${deploy.dir}/classes"
|
<javac srcdir="${src.dir}" destdir="${deploy.dir}/classes"
|
||||||
@@ -101,4 +106,15 @@
|
|||||||
<fileset dir="etc" includes="**/*.jnlp"/>
|
<fileset dir="etc" includes="**/*.jnlp"/>
|
||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- mirrors the files to the production web server -->
|
||||||
|
<target name="mirror">
|
||||||
|
<echo message="Mirroring files to ${musicd_host}..."/>
|
||||||
|
<apply executable="rsync" parallel="true">
|
||||||
|
<fileset dir="${install.dir}" includes="**"/>
|
||||||
|
<arg line="-av"/>
|
||||||
|
<srcfile/>
|
||||||
|
<arg line="${musicd_host}:${install.dir}"/>
|
||||||
|
</apply>
|
||||||
|
</target>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
download and install the Sun JRE 1.4 and/or Java Web Start from
|
download and install the Sun JRE 1.4 and/or Java Web Start from
|
||||||
http://java.sun.com/j2se/ -->
|
http://java.sun.com/j2se/ -->
|
||||||
|
|
||||||
<jnlp spec="1.0+" codebase="@application_uri@" href="game.jnlp">
|
<jnlp spec="1.0+" codebase="@application_uri@" href="chooser.jnlp">
|
||||||
<information>
|
<information>
|
||||||
<title>RoboDJ Chooser</title>
|
<title>RoboDJ Chooser</title>
|
||||||
<vendor>Seuss and Asseusciates</vendor>
|
<vendor>Seuss and Asseusciates</vendor>
|
||||||
@@ -25,12 +25,12 @@
|
|||||||
<all-permissions/>
|
<all-permissions/>
|
||||||
</security>
|
</security>
|
||||||
<resources>
|
<resources>
|
||||||
<j2se version="1.4.0" href="http://java.sun.com/products/autodl/j2se"/>
|
<j2se version="1.4+" href="http://java.sun.com/products/autodl/j2se"/>
|
||||||
|
<jar href="robodj.jar"/>
|
||||||
<jar href="commons-io.jar"/>
|
<jar href="commons-io.jar"/>
|
||||||
<jar href="commons-lang.jar"/>
|
<jar href="commons-lang.jar"/>
|
||||||
<jar href="mm.mysql-2.0.14-bin.jar"/>
|
<jar href="mm.mysql-2.0.14-bin.jar"/>
|
||||||
<jar href="samskivert.jar"/>
|
<jar href="samskivert.jar"/>
|
||||||
<jar href="robodj.jar"/>
|
|
||||||
<property name="musicd_host" value="@musicd_host@"/>
|
<property name="musicd_host" value="@musicd_host@"/>
|
||||||
</resources>
|
</resources>
|
||||||
<application-desc main-class="robodj.chooser.Chooser"/>
|
<application-desc main-class="robodj.chooser.Chooser"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user