Author: mszefler
Date: Mon Aug 21 14:03:15 2006
New Revision: 433358

URL: http://svn.apache.org/viewvc?rev=433358&view=rev
Log:
Simplified example builder to not compile. 

Added:
    incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/jbi.xml
      - copied unchanged from r433343, 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/assembly/META-INF/jbi.xml
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/jbi.xml
      - copied unchanged from r433343, 
incubator/ode/trunk/jbi-examples/src/examples/PingPong/assembly/META-INF/jbi.xml
Removed:
    incubator/ode/trunk/jbi-examples/src/examples/AsyncProcess2/
    incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/assembly/
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/assembly/
    incubator/ode/trunk/jbi-examples/src/examples/example-build.xml
Modified:
    
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/build.xml
    
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/build.xml
    incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/build.xml
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/build.xml
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/build.xml
    incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/build.xml

Modified: 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/build.xml
 (original)
+++ 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-http/build.xml
 Mon Aug 21 14:03:15 2006
@@ -1,15 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <project name="HelloWorld2-HTTP" default="service-unit">
-
-    <target name="clean" depends="">
-        <delete dir="build" />
-    </target>
     
-    <target name="service-unit" depends="clean">
-        <mkdir dir="build" />
-        <zip destfile="build/HelloWorld2-HTTP.zip">
-            <fileset dir="." includes="*.wsdl"/>
-        </zip>
-    </target>
+    <import file="../../base-su.xml" />
 
 </project>

Modified: 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/build.xml
 (original)
+++ 
incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/HelloWorld2-process/build.xml
 Mon Aug 21 14:03:15 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<project name="HelloWorld2" default="service-unit">
+<project name="HelloWorld2-Process" default="service-unit">
 
-    <import file="../../example-build.xml" />
+    <import file="../../base-su.xml" />
 
 </project>

Modified: incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml 
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/HelloWorld2/build.xml Mon Aug 
21 14:03:15 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <project name="HelloWorld2" default="assembly">
 
-    <import file="../example-build.xml" />
+    <import file="../base-sa.xml" />
 
     <target name="test" depends="init">
         <antcall target="_sendsoap">
@@ -10,37 +10,4 @@
         </antcall>
     </target>
 
-    <target name="_clean">
-        <delete dir="build" />
-    </target>
-
-    <target name="clean" depends="_clean">
-        <subant target="clean">
-            <fileset dir="." includes="*/build.xml"/>
-        </subant>
-    </target>
-
-
-    <target name="build-process">
-        <subant target="">
-            <property name="ode.home" value="${ode.home}" />
-            <fileset dir="." includes="HelloWorld2-process/build.xml"/>
-        </subant>
-    </target>
-
-    <target name="build-http">
-        <subant target="">
-            <fileset dir="." includes="HelloWorld2-http/build.xml"/>
-        </subant>
-    </target>
-
-    <target name="assembly" depends="_clean,build-process,build-http">
-        <mkdir dir="build" />
-        <zip destfile="build/HelloWorld2-Assembly.zip">
-            <fileset dir="HelloWorld2-process/build" 
includes="HelloWorld2-Process.zip"/>
-            <fileset dir="HelloWorld2-http/build" 
includes="HelloWorld2-HTTP.zip"/>
-            <fileset dir="assembly" includes="META-INF/*"/>
-        </zip>
-    </target>
-    
 </project>

Modified: incubator/ode/trunk/jbi-examples/src/examples/PingPong/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/build.xml (original)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/build.xml Mon Aug 21 
14:03:15 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <project name="PingPong" default="assembly">
 
-    <import file="../example-build.xml" />
+    <import file="../base-sa.xml" />
 
     <target name="test" depends="init">
         <antcall target="_sendsoap">
@@ -10,46 +10,4 @@
         </antcall>
     </target>
 
-    <target name="_clean">
-        <delete dir="build" />
-    </target>
-
-    <target name="clean" depends="_clean">
-        <subant target="clean">
-            <fileset dir="." includes="*/build.xml"/>
-        </subant>
-    </target>
-
-
-    <target name="build-ping">
-        <subant target="">
-            <property name="ode.home" value="${ode.home}" />
-            <fileset dir="." includes="ping/build.xml"/>
-        </subant>
-    </target>
-
-    <target name="build-pong">
-        <subant target="">
-            <property name="ode.home" value="${ode.home}" />
-            <fileset dir="." includes="pong/build.xml"/>
-        </subant>
-    </target>
-
-    <target name="build-ping-http">
-        <subant target="">
-            <property name="ode.home" value="${ode.home}" />
-            <fileset dir="." includes="ping-http/build.xml"/>
-        </subant>
-    </target>
-
-    <target name="assembly" 
depends="_clean,build-ping,build-pong,build-ping-http">
-        <mkdir dir="build" />
-        <zip destfile="build/PingPong-Assembly.zip">
-            <fileset dir="ping/build" includes="Ping-Process.zip"/>
-            <fileset dir="ping-http/build" includes="Ping-HTTP.zip"/>
-            <fileset dir="pong/build" includes="Pong-Process.zip"/>
-            <fileset dir="assembly" includes="META-INF/*"/>
-        </zip>
-    </target>
-    
 </project>

Modified: 
incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/build.xml 
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping-http/build.xml 
Mon Aug 21 14:03:15 2006
@@ -1,15 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
 <project name="Ping-HTTP" default="service-unit">
-
-    <target name="clean" depends="">
-        <delete dir="build" />
-    </target>
-    
-    <target name="service-unit" depends="clean">
-        <mkdir dir="build" />
-        <zip destfile="build/Ping-HTTP.zip">
-            <fileset dir="." includes="*.wsdl"/>
-        </zip>
-    </target>
-
+    <import file="../../base-su.xml" />
 </project>

Modified: incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/build.xml 
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/ping/build.xml Mon 
Aug 21 14:03:15 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<project name="Ping" default="service-unit">
+<project name="Ping-Process" default="service-unit">
 
-    <import file="../../example-build.xml" />
+    <import file="../../base-su.xml" />
 
 </project>

Modified: incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/build.xml?rev=433358&r1=433357&r2=433358&view=diff
==============================================================================
--- incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/build.xml 
(original)
+++ incubator/ode/trunk/jbi-examples/src/examples/PingPong/pong/build.xml Mon 
Aug 21 14:03:15 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
-<project name="Pong" default="service-unit">
+<project name="Pong-Process" default="service-unit">
 
-    <import file="../../example-build.xml" />
+    <import file="../../base-su.xml" />
 
 </project>


Reply via email to