You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by ae...@apache.org on 2006/10/04 17:00:38 UTC

svn commit: r452906 - /webservices/muse/trunk/build.xml

Author: aeberbac
Date: Wed Oct  4 08:00:37 2006
New Revision: 452906

URL: http://svn.apache.org/viewvc?view=rev&rev=452906
Log:
fixing cart-before-horse exception: can't use MUSE_DIST before it's declared... like C

Modified:
    webservices/muse/trunk/build.xml

Modified: webservices/muse/trunk/build.xml
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/build.xml?view=diff&rev=452906&r1=452905&r2=452906
==============================================================================
--- webservices/muse/trunk/build.xml (original)
+++ webservices/muse/trunk/build.xml Wed Oct  4 08:00:37 2006
@@ -43,6 +43,9 @@
         <!-- the name of the directory to which we will checkout the site -->
         <property name="MUSE_SVN_SITE" value="docs"/>
 
+        <!-- the name of the directory where the release zip files will be put -->
+        <property name="MUSE_DIST" value="dist"/>
+
         <!-- the svn ant task didn't work so call it directly 
              an executable svn must be on the system PATH -->
         <exec executable="svn" searchpath="true" dir="." failonerror="true">
@@ -73,9 +76,6 @@
         <condition property="MAVEN_EXECUTABLE" value="mvn.bat" else="mvn">
             <os family="windows"/>
         </condition>
-
-        <!-- the name of the directory where the release zip files will be put -->
-        <property name="MUSE_DIST" value="dist"/>
 
         <!-- pull out the version we're building from the pom.xml -->
         <xmlproperty file="${MUSE_SVN_MODULES}/pom.xml"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org