You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/05/18 10:04:06 UTC

svn commit: r407493 - in /incubator/tuscany/java/samples: das/companyweb/ sca/helloworld-jms/client/ sca/helloworld-jms/server/ sca/helloworlde4xws/ sca/helloworldjsclient/ sca/helloworldjsonrpc/ sca/helloworldweb/ sca/helloworldws/ sca/helloworldwscli...

Author: jsdelfino
Date: Thu May 18 01:04:05 2006
New Revision: 407493

URL: http://svn.apache.org/viewvc?rev=407493&view=rev
Log:
Minor fixes to Ant build.xml files

Modified:
    incubator/tuscany/java/samples/das/companyweb/build.xml
    incubator/tuscany/java/samples/sca/helloworld-jms/client/build.xml
    incubator/tuscany/java/samples/sca/helloworld-jms/server/build.xml
    incubator/tuscany/java/samples/sca/helloworlde4xws/build.xml
    incubator/tuscany/java/samples/sca/helloworldjsclient/build.xml
    incubator/tuscany/java/samples/sca/helloworldjsonrpc/build.xml
    incubator/tuscany/java/samples/sca/helloworldweb/build.xml
    incubator/tuscany/java/samples/sca/helloworldws/build.xml
    incubator/tuscany/java/samples/sca/helloworldwsclient/build.xml

Modified: incubator/tuscany/java/samples/das/companyweb/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/das/companyweb/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/das/companyweb/build.xml (original)
+++ incubator/tuscany/java/samples/das/companyweb/build.xml Thu May 18 01:04:05 2006
@@ -46,7 +46,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-companyweb-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-companyweb-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworld-jms/client/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworld-jms/client/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworld-jms/client/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworld-jms/client/build.xml Thu May 18 01:04:05 2006
@@ -31,7 +31,7 @@
         <fileset dir="${mainDir}/lib/celtix">
             <include name="tuscany-celtix-incubating-M1.jar"/>
         </fileset>
-        <pathelement path="target/sample-helloworld-jms-client.jar"/>
+        <pathelement path="target/sample-helloworldjms-client.jar"/>
     </path>
 
   <target name="init">
@@ -45,14 +45,14 @@
       <copy todir="target/classes">
         <fileset dir="src/main/resources"/>
       </copy>
-      <jar destfile="target/sample-helloworld-jms-client.jar">
+      <jar destfile="target/sample-helloworldjms-client.jar">
         <fileset dir="target/classes"/>
       </jar>
     </target>
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworld-jms-client-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldjms-client-incubating-M1.jar"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworld-jms/server/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworld-jms/server/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworld-jms/server/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworld-jms/server/build.xml Thu May 18 01:04:05 2006
@@ -31,7 +31,7 @@
         <fileset dir="${mainDir}/lib/celtix">
             <include name="tuscany-celtix-incubating-M1.jar"/>
         </fileset>
-        <pathelement path="target/sample-helloworld-jms-server.jar"/>
+        <pathelement path="target/sample-helloworldjms-service.jar"/>
     </path>
 
   <target name="init">
@@ -45,14 +45,14 @@
       <copy todir="target/classes">
         <fileset dir="src/main/resources"/>
       </copy>
-      <jar destfile="target/sample-helloworld-jms-server.jar">
+      <jar destfile="target/sample-helloworldjms-service.jar">
         <fileset dir="target/classes"/>
       </jar>
     </target>
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworld-jms-server-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldjms-service-incubating-M1.jar"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworlde4xws/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworlde4xws/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworlde4xws/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworlde4xws/build.xml Thu May 18 01:04:05 2006
@@ -43,7 +43,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworlde4xws-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworlde4xws-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworldjsclient/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldjsclient/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldjsclient/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldjsclient/build.xml Thu May 18 01:04:05 2006
@@ -43,7 +43,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworldjsclient-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldjsclient-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworldjsonrpc/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldjsonrpc/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldjsonrpc/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldjsonrpc/build.xml Thu May 18 01:04:05 2006
@@ -46,7 +46,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworldjsonrpc-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldjsonrpc-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworldweb/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldweb/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldweb/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldweb/build.xml Thu May 18 01:04:05 2006
@@ -46,7 +46,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworldweb-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldweb-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworldws/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldws/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldws/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldws/build.xml Thu May 18 01:04:05 2006
@@ -46,7 +46,7 @@
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworldws-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldws-incubating-M1.war"/>
       </delete>
     </target>
 </project>

Modified: incubator/tuscany/java/samples/sca/helloworldwsclient/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldwsclient/build.xml?rev=407493&r1=407492&r2=407493&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldwsclient/build.xml (original)
+++ incubator/tuscany/java/samples/sca/helloworldwsclient/build.xml Thu May 18 01:04:05 2006
@@ -31,7 +31,7 @@
         <fileset dir="${mainDir}/lib/axis2">
             <include name="tuscany-axis2-incubating-M1.jar"/>
         </fileset>
-        <pathelement path="target/sample-helloworld.jar"/>
+        <pathelement path="target/sample-helloworldwsclient.jar"/>
     </path>
 
   <target name="init">
@@ -45,14 +45,14 @@
       <copy todir="target/classes">
         <fileset dir="src/main/resources"/>
       </copy>
-      <jar destfile="target/sample-helloworld.jar">
+      <jar destfile="target/sample-helloworldwsclient.jar">
         <fileset dir="target/classes"/>
       </jar>
     </target>
 
     <target name="clean">
       <delete quiet="true" includeemptydirs="true">
-        <fileset dir="target" excludes="sample-helloworld-incubating-M1.jar"/>
+        <fileset dir="target" excludes="sample-helloworldwsclient-incubating-M1.jar"/>
       </delete>
     </target>
 </project>