You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/03/09 17:30:04 UTC

svn commit: r751727 - in /cxf/sandbox/interopfest/wstrust13: ./ build.xml

Author: dkulp
Date: Mon Mar  9 16:30:04 2009
New Revision: 751727

URL: http://svn.apache.org/viewvc?rev=751727&view=rev
Log:
Parameterize downloads

Modified:
    cxf/sandbox/interopfest/wstrust13/   (props changed)
    cxf/sandbox/interopfest/wstrust13/build.xml

Propchange: cxf/sandbox/interopfest/wstrust13/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Mar  9 16:30:04 2009
@@ -0,0 +1,10 @@
+.pmd
+.checkstyle
+.ruleset
+target
+eclipse-classes
+.settings
+.classpath
+.project
+.wtpmodules
+

Modified: cxf/sandbox/interopfest/wstrust13/build.xml
URL: http://svn.apache.org/viewvc/cxf/sandbox/interopfest/wstrust13/build.xml?rev=751727&r1=751726&r2=751727&view=diff
==============================================================================
--- cxf/sandbox/interopfest/wstrust13/build.xml (original)
+++ cxf/sandbox/interopfest/wstrust13/build.xml Mon Mar  9 16:30:04 2009
@@ -1,16 +1,19 @@
 <project name="wssec11" default="download">
     <property name="build.dir" location="target"/>
+    <property name="service.host" value="131.107.153.205"/>
+    <property name="trust.host" value="131.107.153.205"/>
+
     <target name="download.internal" if="needsToDownload">
         <mkdir dir="${build.dir}/generated/src/main/resources/certs"/>
         <mkdir dir="${build.dir}/wsdl"/>
         <get src="http://131.107.72.15/ilab/Certs/Certs.zip" dest="${build.dir}/Certs.zip"/>
-        <get src="http://131.107.153.205/PingService?wsdl" dest="${build.dir}/wsdl/PingService.wsdl"/>
+        <get src="http://${service.host}/PingService?wsdl" dest="${build.dir}/wsdl/PingService.wsdl"/>
 
-        <get src="http://131.107.153.205/trust?wsdl" dest="${build.dir}/wsdl/trust.wsdl"/>
-        <get src="http://131.107.153.205/trust?wsdl=wsdl0" dest="${build.dir}/wsdl/trust2.wsdl"/>
-        <get src="http://131.107.153.205/trust?xsd=xsd0" dest="${build.dir}/wsdl/trust0.xsd"/>
-        <get src="http://131.107.153.205/trust?xsd=xsd1" dest="${build.dir}/wsdl/trust1.xsd"/>
-        <get src="http://131.107.153.205/trust?xsd=xsd2" dest="${build.dir}/wsdl/trust2.xsd"/>
+        <get src="http://${trust.host}/trust?wsdl" dest="${build.dir}/wsdl/trust.wsdl"/>
+        <get src="http://${trust.host}/trust?wsdl=wsdl0" dest="${build.dir}/wsdl/trust2.wsdl"/>
+        <get src="http://${trust.host}/trust?xsd=xsd0" dest="${build.dir}/wsdl/trust0.xsd"/>
+        <get src="http://${trust.host}/trust?xsd=xsd1" dest="${build.dir}/wsdl/trust1.xsd"/>
+        <get src="http://${trust.host}/trust?xsd=xsd2" dest="${build.dir}/wsdl/trust2.xsd"/>
 
         <antcall target="transform"/>
         <unzip src="${build.dir}/Certs.zip" dest="${build.dir}/generated/src/main/resources/certs"/>