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/06/25 14:05:00 UTC

svn commit: r957907 - /commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml

Author: jbeard
Date: Fri Jun 25 12:05:00 2010
New Revision: 957907

URL: http://svn.apache.org/viewvc?rev=957907&view=rev
Log:
Updated getDeps.xml to download and unpack xalan dependency.

Modified:
    commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml

Modified: commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml?rev=957907&r1=957906&r2=957907&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-js/branches/core-module.SCXML-137/getDeps.xml Fri Jun 25 12:05:00 2010
@@ -28,6 +28,13 @@
 	<target name="get-deps" >
 	
 		<mkdir dir="${tmp-dir}"/>
+		
+		<get dest="${tmp-dir}/xalan-j_2_7_1-bin.zip" usetimestamp="true" ignoreerrors="true" src="http://mirror.csclub.uwaterloo.ca/apache/xml/xalan-j/binaries/xalan-j_2_7_1-bin.zip"/>
+		<unzip src="${tmp-dir}/xalan-j_2_7_1-bin.zip" dest="${tmp-dir}"/>
+		<move file="${tmp-dir}/xalan-j_2_7_1/serializer.jar" todir="${lib-java}"/>
+		<move file="${tmp-dir}/xalan-j_2_7_1/xalan.jar" todir="${lib-java}"/>
+		<move file="${tmp-dir}/xalan-j_2_7_1/xercesImpl.jar" todir="${lib-java}"/>
+		<move file="${tmp-dir}/xalan-j_2_7_1/xml-apis.jar" todir="${lib-java}"/>
 
 		<!--selenium is a bit tricky, as selenium-server in maven repository is old and breaks with FF on WinXP SP3-->
 		<get dest="${tmp-dir}/selenium-remote-control-1.0.3.zip" usetimestamp="true" ignoreerrors="true" src="http://selenium.googlecode.com/files/selenium-remote-control-1.0.3.zip" />
@@ -60,6 +67,7 @@
 		<get dest="${lib-test-js}/env.js" usetimestamp="true" ignoreerrors="true" src="http://jqueryjs.googlecode.com/svn/trunk/jquery/build/runtest/env.js"/>
 		-->
 
+
 		<!-- so the last question that remains, then, is do we need full dojo? -->
 
 		<delete dir="${tmp-dir}"/>