You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ru...@apache.org on 2006/12/01 20:53:44 UTC

svn commit: r481360 - /webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml

Author: ruchithf
Date: Fri Dec  1 11:53:43 2006
New Revision: 481360

URL: http://svn.apache.org/viewvc?view=rev&rev=481360
Log:
Adding the setup script to copy the necessary jars to AXIS2_HOME/lib and to copy mars to AXIS2_HOME/modules

Added:
    webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml

Added: webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml?view=auto&rev=481360
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml (added)
+++ webservices/axis2/branches/java/1_1/modules/security/release-docs/build.xml Fri Dec  1 11:53:43 2006
@@ -0,0 +1,32 @@
+<project basedir="." default="setup">
+
+	<property name="lib.dir" value="lib"/>
+	<property name="modules.dir" value="."/>
+	
+	<property environment="env"/>
+    	
+	<target name="check.dependency" unless="env.AXIS2_HOME">
+        <echo message="AXIS2_HOME must be set"/>
+    </target>
+
+	<!-- Copy the required jars and mars appropriately -->
+	<target name="setup" if="env.AXIS2_HOME" depends="check.dependency">
+		
+   		<property name="axis2.modules.dir" value="${env.AXIS2_HOME}/repository/modules/"/>
+   		<property name="axis2.lib.dir" value="${env.AXIS2_HOME}/lib"/>
+		
+		<copy todir="${axis2.lib.dir}">
+	        <fileset dir="${lib.dir}">
+	                <include name="**/*.jar"/>
+	        </fileset>
+		</copy>
+		
+		<copy todir="${axis2.modules.dir}">
+	        <fileset dir="${modules.dir}">
+	                <include name="**/*.mar"/>
+	        </fileset>
+		</copy>
+				
+	</target>
+	
+</project>
\ No newline at end of file



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