More buildy fiddly.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@918 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2002-11-11 18:23:36 +00:00
parent a804d71d24
commit bb710d44af
4 changed files with 14 additions and 10 deletions
+5 -5
View File
@@ -1,5 +1,5 @@
# #
# $Id: build.properties,v 1.1 2002/11/11 17:23:57 mdb Exp $ # $Id: build.properties,v 1.2 2002/11/11 18:23:36 mdb Exp $
# #
# Build configuration for the RoboDJ client application. # Build configuration for the RoboDJ client application.
# #
@@ -10,11 +10,11 @@ application_uri = http://www.samskivert.com/code/robodj
# the jar file keystore # the jar file keystore
sign.keystore = lib/keystore.dat sign.keystore = lib/keystore.dat
# the keystore password
sign.storepass = weasel
# the alias to use when signing the jar files # the alias to use when signing the jar files
sign.alias = myself sign.alias = samskivert
# the keystore password
sign.storepass = monkeybiz
# the host on which the music daemon is running # the host on which the music daemon is running
musicd_host = depravity musicd_host = depravity
+6 -3
View File
@@ -88,7 +88,7 @@
</target> </target>
<!-- installs the JWS app --> <!-- installs the JWS app -->
<target name="install"> <target name="install" depends="dist">
<mkdir dir="${install.dir}"/> <mkdir dir="${install.dir}"/>
<!-- copy the jar files used by the client --> <!-- copy the jar files used by the client -->
<copy todir="${install.dir}"> <copy todir="${install.dir}">
@@ -100,15 +100,18 @@
storepass="${sign.storepass}" lazy="true"> storepass="${sign.storepass}" lazy="true">
<fileset dir="${install.dir}" includes="*.jar"/> <fileset dir="${install.dir}" includes="*.jar"/>
</signjar> </signjar>
<!-- copy the jnlp file(s) into place --> <!-- copy the jnlp file(s) and associated business into place -->
<filter filtersfile="build.properties"/> <filter filtersfile="build.properties"/>
<copy todir="${install.dir}" filtering="true"> <copy todir="${install.dir}" filtering="true">
<fileset dir="etc" includes="**/*.jnlp"/> <fileset dir="etc" includes="**/*.jnlp"/>
</copy> </copy>
<copy todir="${install.dir}">
<fileset dir="etc" includes="**/*.png"/>
</copy>
</target> </target>
<!-- mirrors the files to the production web server --> <!-- mirrors the files to the production web server -->
<target name="mirror"> <target name="mirror" depends="install">
<echo message="Mirroring files to ${musicd_host}..."/> <echo message="Mirroring files to ${musicd_host}..."/>
<apply executable="rsync" parallel="true"> <apply executable="rsync" parallel="true">
<fileset dir="${install.dir}" includes="**"/> <fileset dir="${install.dir}" includes="**"/>
+3 -2
View File
@@ -6,12 +6,12 @@
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="chooser.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>
<homepage href="index.html"/> <homepage href="index.html"/>
<icon href="icon.png"/> <icon href="icon.png" width=64 height=64/>
<description kind="short"> <description kind="short">
Music choosing fun for the whole family! Music choosing fun for the whole family!
</description> </description>
@@ -20,6 +20,7 @@
by which that music can be queued up for playing on the music by which that music can be queued up for playing on the music
server. server.
</description> </description>
<offline-allowed/>
</information> </information>
<security> <security>
<all-permissions/> <all-permissions/>
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB