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/09/08 14:59:52 UTC

svn commit: r995038 - in /commons/sandbox/gsoc/2010/scxml-js/trunk: build.xml mvn-ant-build.xml

Author: jbeard
Date: Wed Sep  8 12:59:51 2010
New Revision: 995038

URL: http://svn.apache.org/viewvc?rev=995038&view=rev
Log:
This commit fixes last commit which broke the maven build. Caused by moving import statements in ant build files.

Modified:
    commons/sandbox/gsoc/2010/scxml-js/trunk/build.xml
    commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml

Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/build.xml?rev=995038&r1=995037&r2=995038&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/build.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/build.xml Wed Sep  8 12:59:51 2010
@@ -45,6 +45,7 @@
 		<artifact:dependency groupId="xalan" artifactId="xalan" version="2.7.0"/>
 	</artifact:dependencies>
 
+	<import file="mvn-ant-build.xml"/>
 
 	<!--
 	<target name="test">
@@ -304,7 +305,5 @@
 		</java>
 	</target>
 
-	<import file="mvn-ant-build.xml"/>
-
 </project>
 

Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml?rev=995038&r1=995037&r2=995038&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml (original)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/mvn-ant-build.xml Wed Sep  8 12:59:51 2010
@@ -17,6 +17,8 @@
 -->
 <project name="scxml-js-mvn" basedir=".">
 
+	<import file="build-common.xml"/>
+
 	<!-- build standalone executable -->
 
 	<property name="build-js-main" location="${build-js}/main-built.js"/>
@@ -70,7 +72,6 @@
 	</target>
 
 
-	<import file="build-common.xml"/>
 
 </project>