You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jb...@apache.org on 2010/08/16 07:41:58 UTC

svn commit: r985792 - /commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml

Author: jbeard
Date: Mon Aug 16 05:41:58 2010
New Revision: 985792

URL: http://svn.apache.org/viewvc?rev=985792&view=rev
Log:
Updated getDeps.xml to download Rhino1.7RC3, rather than stable Rhino1.7.2. This is what I have been using in development.

Modified:
    commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml

Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml?rev=985792&r1=985791&r2=985792&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/getDeps.xml Mon Aug 16 05:41:58 2010
@@ -77,7 +77,10 @@
 		<get dest="${tmp-dir}/jquery.svg.package-1.4.3.zip" usetimestamp="true" ignoreerrors="true" src="http://keith-wood.name/zip/jquery.svg.package-1.4.3.zip"/>
 		<unzip src="${tmp-dir}/jquery.svg.package-1.4.3.zip" dest="${drawing-tool-lib}"/>
 
-		<get dest="${lib-java}/js.jar" usetimestamp="true" ignoreerrors="true" src="http://mirrors.ibiblio.org/pub/mirrors/maven2/rhino/js/1.7R2/js-1.7R2.jar"/>
+		<!-- we use rhino release candidate, rather than stable release because it has built-in support for Array.reduce, among other things -->
+		<get dest="${tmp-dir}/rhino1_7R3pre.zip" usetimestamp="true" ignoreerrors="true" src="ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3pre.zip"/>
+		<unzip src="${tmp-dir}/rhino1_7R3pre.zip" dest="${tmp-dir}"/>
+		<copy file="${tmp-dir}/rhino1_7R3pre/js.jar" tofile="${lib-java}/js.jar"/>
 
 		<delete dir="${tmp-dir}"/>