Skip to content

Commit

Permalink
Improved build process.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Labouisse committed Apr 15, 2005
1 parent bc64445 commit d7649e9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
3 changes: 3 additions & 0 deletions build-local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ keystore.alias=grand
keystore.password=gabuzo

# JNLP deployment dir
#jnlp.deploydir=/home/moi/public_html/grand
#jnlp.codebase=http://gabuzo/~moi/grand
#jnlp.title="Grand UI exp"
jnlp.deploydir=/home/moi/html/ggTools/files/grand/jnlp
8 changes: 7 additions & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
product.version=0.7
product.version=0.8pre
grand-core.version=1.8
eclipse.version=3.1.0

# Configuration for downloads

Expand Down Expand Up @@ -38,3 +39,8 @@ url.oro.jar=http://www.ibiblio.org/maven/oro/jars/oro-2.0.8.jar

# Commons loggin
url.commons-logging.jar=http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar


# JNLP Configuration
jnlp.codebase=http://www.ggtools.net/files/grand/jnlp
jnlp.title="Grand UI"
15 changes: 14 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,21 @@
<exclude name="**/*.so" />
<exclude name="**/*.dll" />
</fileset>
<fileset dir="${jnlpdir}" />
<fileset dir="${jnlpdir}">
<exclude name="*.jnlp" />
</fileset>
</copy>
<!-- Substitute the tokens in the jnlp files -->
<copy todir="${jnlp.deploydir}">
<fileset dir="${jnlpdir}">
<include name="*.jnlp" />
</fileset>
<filterset>
<filter token="ECLIPSE_VERSION" value="${eclipse.version}"/>
<filter token="CODEBASE" value="${jnlp.codebase}"/>
<filter token="TITLE" value="${jnlp.title}"/>
</filterset>
</copy>
<copy todir="${jnlp.deploydir}/${dist.nativedir}">
<fileset dir="${extlibdir}">
<include name="*swt*.*" />
Expand Down
4 changes: 2 additions & 2 deletions jnlp/grand-ui.jnlp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<jnlp
spec="1.0+"
codebase="http://www.ggtools.net/files/grand/jnlp"
codebase="@CODEBASE@"
href="grand-ui.jnlp">
<information>
<title>Grand UI</title>
<title>@TITLE@</title>
<vendor>ggTools</vendor>
<homepage href="http://www.ggtools.net/grand/"/>
<description>GUI for Grand</description>
Expand Down

0 comments on commit d7649e9

Please sign in to comment.