Author: steveh
Date: Wed Apr  6 10:11:37 2005
New Revision: 160312

URL: http://svn.apache.org/viewcvs?view=rev&rev=160312
Log:
Adding a properties file to the WSM samples build.
This change (1) brings the WSM sample in line with the other samples and (2) 
makes it possible to move the samples to a development directory and still 
build them successfully.

Added:
    
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties
   (with props)
    
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties
   (with props)
    incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties   
(with props)
    incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties   (with 
props)
    incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties   
(with props)
    incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties   
(with props)
Modified:
    
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build-client.xml
    incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.xml
    
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build-client.xml
    incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.xml
    incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build-client.xml
    incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.xml
    incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client.xml
    incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.xml
    incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build-client.xml
    incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.xml
    incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.xml
    incubator/beehive/trunk/samples/wsm-samples/WEB-INF/build.xml

Modified: 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build-client.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build-client.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build-client.xml
 (original)
+++ 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build-client.xml
 Wed Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Enhanced Address Book Sample Client" default="test" basedir=".">
+  
+  <property file="build.properties"/>
        
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property
       name="wsdl.url" 

Added: 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties?view=auto&rev=160312
==============================================================================
--- 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties
 (added)
+++ 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties
 Wed Apr  6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT ME]
\ No newline at end of file

Propchange: 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.xml 
(original)
+++ incubator/beehive/trunk/samples/wsm-addressbook-enhanced/WEB-INF/build.xml 
Wed Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Enhanced Address Book Sample" default="build" basedir=".">
+  
+  <property file="build.properties"/>
 
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="EnhancedAddressBook" />
 

Modified: 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build-client.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build-client.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build-client.xml
 (original)
+++ 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build-client.xml
 Wed Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Address Book Sample Client" default="test" basedir=".">
+  
+  <property file="build.properties"/>
        
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property
       name="wsdl.url" 

Added: 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties?view=auto&rev=160312
==============================================================================
--- 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties
 (added)
+++ 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties
 Wed Apr  6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT ME]
\ No newline at end of file

Propchange: 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.xml 
(original)
+++ incubator/beehive/trunk/samples/wsm-addressbook-fromWSDL/WEB-INF/build.xml 
Wed Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Address Book from WSDL Sample" default="build" basedir=".">
+  
+  <property file="build.properties"/>
 
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="fromWSDL" />
 

Modified: 
incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build-client.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build-client.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build-client.xml 
(original)
+++ incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build-client.xml 
Wed Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Address Book Sample Client" default="test" basedir=".">
+
+  <property file="build.properties"/>
        
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property
       name="wsdl.url" 

Added: incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties?view=auto&rev=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties 
(added)
+++ incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties 
Wed Apr  6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT_ME]
\ No newline at end of file

Propchange: 
incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.xml (original)
+++ incubator/beehive/trunk/samples/wsm-addressbook/WEB-INF/build.xml Wed Apr  
6 10:11:37 2005
@@ -20,7 +20,9 @@
 
 <project name="Address Book Sample" default="build" basedir=".">
 
-  <import file="../../../beehive-imports.xml" />
+  <property file="build.properties"/>
+
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="AddressBook" />
 

Modified: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client.xml 
(original)
+++ incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client.xml Wed Apr  
6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Blank Sample Client" default="test" basedir=".">
+  
+  <property file="build.properties"/>
        
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property
       name="wsdl.url" 

Added: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties?view=auto&rev=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties (added)
+++ incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties Wed Apr  
6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT_ME]
\ No newline at end of file

Propchange: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.xml (original)
+++ incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build.xml Wed Apr  6 
10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Blank Sample" default="build" basedir=".">
+  
+  <property file="build.properties"/>
 
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="blank" />
 

Modified: incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build-client.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build-client.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build-client.xml 
(original)
+++ incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build-client.xml Wed 
Apr  6 10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Employee Database Sample Client" default="test" basedir=".">
+  
+  <property file="build.properties"/>
        
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property
       name="wsdl.url" 

Added: incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties?view=auto&rev=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties 
(added)
+++ incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties Wed 
Apr  6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT ME]
\ No newline at end of file

Propchange: 
incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.xml (original)
+++ incubator/beehive/trunk/samples/wsm-employee/WEB-INF/build.xml Wed Apr  6 
10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Employee Database Sample" default="build" basedir=".">
+  
+  <property file="build.properties"/>
 
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="Employee" />
 

Added: incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties?view=auto&rev=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties 
(added)
+++ incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties Wed 
Apr  6 10:11:37 2005
@@ -0,0 +1 @@
+beehive.home=[EDIT ME]
\ No newline at end of file

Propchange: 
incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.xml (original)
+++ incubator/beehive/trunk/samples/wsm-petstore-dashboard/build.xml Wed Apr  6 
10:11:37 2005
@@ -21,8 +21,9 @@
 <project name="wsm-petstore-dashboard" basedir="." default="all">
 
   <!-- MODIFY THIS PROPERTY IF YOU MOVE THE SAMPLE --> 
-  <property name="beehive.home" value="../.." />
-  
+    
+  <property file="build.properties"/>
+
   <import file="${beehive.home}/beehive-imports.xml" />
 
   <property

Modified: incubator/beehive/trunk/samples/wsm-samples/WEB-INF/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-samples/WEB-INF/build.xml?view=diff&r1=160311&r2=160312
==============================================================================
--- incubator/beehive/trunk/samples/wsm-samples/WEB-INF/build.xml (original)
+++ incubator/beehive/trunk/samples/wsm-samples/WEB-INF/build.xml Wed Apr  6 
10:11:37 2005
@@ -19,8 +19,10 @@
  -->
 
 <project name="Beehive/WSM Sample Web Services" default="build" basedir=".">
+  
+  <property file="build.properties"/>
 
-  <import file="../../../beehive-imports.xml" />
+  <import file="${beehive.home}/beehive-imports.xml" />
 
   <property name="service.name" value="wsm-samples" />
 


Reply via email to