diff options
-rw-r--r-- | build.xml | 7 | ||||
-rw-r--r-- | jocl.jnlp | 4 |
2 files changed, 6 insertions, 5 deletions
@@ -85,12 +85,13 @@ <target name="-post-jar" depends="jar.natives,tag.build"> - <!-- TODO temporary codebase --> - <property name="jnlp.codebase" value="http://people.fh-landshut.de/~mbien/jogamp/jocl/"/> + <property name="jocl.jnlp.codebase" value="http://jogamp.org/deployment/webstart-next/jocl"/> + <property name="gluegen.jnlp.codebase" value="http://jogamp.org/deployment/jocl-webstart-next"/> <copy file="jocl.jnlp" tofile="${dist.jar.dir}/jocl.jnlp"> <filterchain> - <replacestring from="CODEBASE_TAG" to="${jnlp.codebase}"/> + <replacestring from="JOCL_CODEBASE_TAG" to="${jocl.jnlp.codebase}"/> + <replacestring from="GLUEGEN_CODEBASE_TAG" to="${gluegen.jnlp.codebase}"/> </filterchain> </copy> @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<jnlp codebase="CODEBASE_TAG" href="jocl.jnlp"> +<jnlp codebase="JOCL_CODEBASE_TAG" href="jocl.jnlp"> <information> <title>Java(tm) Binding to the OpenCL(r) API</title> <vendor>JogAmp Community</vendor> @@ -14,7 +14,7 @@ </security> <resources> <jar href="jocl.jar" /> - <extension name="gluegen-rt" href="http://jogamp.org/deployment/webstart-next/gluegen-rt.jnlp" /> + <extension name="gluegen-rt" href="GLUEGEN_CODEBASE_TAG/gluegen-rt.jnlp" /> </resources> <resources os="Windows" arch="x86"> <nativelib href = "jocl-natives-windows-i586.jar" /> |