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 jh...@apache.org on 2007/02/08 23:40:20 UTC

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

Author: jhawkins
Date: Thu Feb  8 14:40:19 2007
New Revision: 505071

URL: http://svn.apache.org/viewvc?view=rev&rev=505071
Log:
[MUSE-191] OSGi Mini SOAP environment should be packaged to work with MuseComplete

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=505071&r1=505070&r2=505071
==============================================================================
--- webservices/muse/trunk/build.xml (original)
+++ webservices/muse/trunk/build.xml Thu Feb  8 14:40:19 2007
@@ -22,6 +22,9 @@
         <record name="${LOG_FILE}" append="false" action="start"/>
         <echo message="A copy of this output is in ${LOG_FILE}"/>
 
+		<!-- A server 400 error during SVN checkout may be a symptom of your SVN client requiring an https connection -->
+		<!-- If this occurs, change the http://svn.apache.org/* references in this script to https://svn.apache.org/* -->
+		
         <!-- the URL of the trunk -->
         <property name="MUSE_SVN_TRUNK_REPOSITORY" value="http://svn.apache.org/repos/asf/webservices/muse/trunk"/>
         
@@ -62,7 +65,9 @@
 
         <property name="APACHE_LICENSE_FILE" value="${basedir}/license.txt"/>
         <property name="APACHE_LICENSE_URL" value="http://svn.apache.org/viewvc/webservices/muse/trunk/license.txt?view=co"/>
-        
+
+		<!-- Uncomment and set appropriate parameters if running behind a firewall -->
+		<!--<setproxy proxyhost="proxy.host.name" proxyport="80" proxyuser="myuserid" proxypassword="mypassword"/> -->
         <!-- get the license -->
         <get src="${APACHE_LICENSE_URL}" dest="${APACHE_LICENSE_FILE}"/>
     </target>
@@ -140,6 +145,7 @@
         <mkdir dir="${MUSE_OSGI_COMPLETE_DIR}"/>    	
         <mkdir dir="${MUSE_OSGI_WS_API_DIR}"/>    	
         <mkdir dir="${MUSE_OSGI_WS_IMPL_DIR}"/>    	
+        <mkdir dir="${MUSE_LIB_DIR}"/> 
 
         <mkdir dir="${MUSE_SAMPLE_DIR}"/>    	
 
@@ -284,6 +290,14 @@
         <copy todir="${MUSE_OSGI_COMPLETE_DIR}" flatten="true">
             <fileset dir="${MUSE_SVN_MODULES}/osgi-bundles">
                 <include name="*/target/muse-complete-${VERSION}.jar"/>
+            </fileset>
+        </copy>
+
+        <!-- copy in osgi mini module -->
+        <mkdir dir="${MUSE_LIB_DIR}/mini-osgi"/> 
+        <copy todir="${MUSE_LIB_DIR}/mini-osgi" flatten="true">
+            <fileset dir="${MUSE_SVN_MODULES}/muse-osgi-soa-mini">
+                <include name="target/muse-osgi-soa-mini-${VERSION}.jar"/>
             </fileset>
         </copy>
 



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