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 ha...@apache.org on 2006/03/17 16:14:30 UTC

svn commit: r386651 - in /webservices/axis/trunk/c/build: deploy.properties serviceInitialize.xml

Author: hawkeye
Date: Fri Mar 17 07:14:30 2006
New Revision: 386651

URL: http://svn.apache.org/viewcvs?rev=386651&view=rev
Log:
services.xml now uses its own property file for deploy properties

Added:
    webservices/axis/trunk/c/build/deploy.properties
Modified:
    webservices/axis/trunk/c/build/serviceInitialize.xml

Added: webservices/axis/trunk/c/build/deploy.properties
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/deploy.properties?rev=386651&view=auto
==============================================================================
--- webservices/axis/trunk/c/build/deploy.properties (added)
+++ webservices/axis/trunk/c/build/deploy.properties Fri Mar 17 07:14:30 2006
@@ -0,0 +1,10 @@
+# A file which tells us the information we need when we deploy services to servers
+# using the services.xml ant script.
+# Which server to deploy to. Only one can be deployed to at a time and they have
+# the priority given below
+server.apache1=false
+server.apache2=false
+server.simpleaxisserver=true
+
+# This should really be in the test.* props files but it's not and I don't want ot reak them even more !
+dir.xmlParser=${env.XERCES_HOME}

Modified: webservices/axis/trunk/c/build/serviceInitialize.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/build/serviceInitialize.xml?rev=386651&r1=386650&r2=386651&view=diff
==============================================================================
--- webservices/axis/trunk/c/build/serviceInitialize.xml (original)
+++ webservices/axis/trunk/c/build/serviceInitialize.xml Fri Mar 17 07:14:30 2006
@@ -1,5 +1,11 @@
-<project name="initializeServer" default="decideserverproperties">
-    <target name="decideserverproperties">
+<project name="initializeServer" default="decideserverproperties" basedir="..">
+	<import file="${basedir}/build/Initialize.xml"/>
+	<import file="${basedir}/build/buildInitialize.xml"/>
+	<import file="${basedir}/build/testInitialize.xml"/>
+
+	<property file="${basedir}/build/deploy.properties"/>
+	
+    <target name="decideserverproperties" depends="initialize, initializeTest, initializeTest">
 
         <property name="wsdd.file" value="${dir.test.generated}${file.separator}server${file.separator}server.wsdd" />
 
@@ -100,4 +106,5 @@
             </else>
         </if>
     </target>
+	
 </project>