diff options
author | Michael Bien <[email protected]> | 2011-02-05 01:30:13 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-05 01:30:13 +0100 |
commit | 1f3c9cfe8d1c5890780ad150b23b7cdb0d8e7692 (patch) | |
tree | 9a032bdd7da5872fc254fb1904bdfd5b9d8b9e3c | |
parent | 4cbc91ea441339467d938c686e16c64d779edd63 (diff) |
copy gluegen-rt.jnlp with empty codebase to build folder for local testing.
this jnlp is not used for the distribution zip file.
-rw-r--r-- | make/build.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/make/build.xml b/make/build.xml index 58f9f54..f4fcdc8 100644 --- a/make/build.xml +++ b/make/build.xml @@ -693,6 +693,17 @@ referenced via a Class-Path entry in the Manifest of gluegen.jar. --> <copy file="${antlr.jar}" todir="${build}" /> + + <!-- copy a jnlp with empty codebase into build folder for local testing + overwrite property in gluegen.proerpties if desired --> + <property name="gluegen.jnlp.codebase" value=""/> + + <copy file="${gluegen.root}/jnlp-files/gluegen-rt.jnlp" todir="${build}"> + <filterchain> + <replacestring from="GLUEGEN_CODEBASE_TAG" to="${gluegen.jnlp.codebase}"/> + </filterchain> + </copy> + </target> <target name="base.compile" depends="init, gluegen.build, tag.build" /> |