You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/01/07 03:12:37 UTC

svn commit: r896736 - in /tuscany/sandbox/travelsample/launchers: blog-feed/ currency-converter-corba/ currency-converter-jms/ currency-converter-rmi/ currency-converter-ws/ currency-converter/ databinding/ feed-logger/ fullapp/ help-pages/ interaction...

Author: nash
Date: Thu Jan  7 02:12:33 2010
New Revision: 896736

URL: http://svn.apache.org/viewvc?rev=896736&view=rev
Log:
Add launchers/common to runtime path so that ant script works with maven-built jars

Modified:
    tuscany/sandbox/travelsample/launchers/blog-feed/build.xml
    tuscany/sandbox/travelsample/launchers/currency-converter-corba/build.xml
    tuscany/sandbox/travelsample/launchers/currency-converter-jms/build.xml
    tuscany/sandbox/travelsample/launchers/currency-converter-rmi/build.xml
    tuscany/sandbox/travelsample/launchers/currency-converter-ws/build.xml
    tuscany/sandbox/travelsample/launchers/currency-converter/build.xml
    tuscany/sandbox/travelsample/launchers/databinding/build.xml
    tuscany/sandbox/travelsample/launchers/feed-logger/build.xml
    tuscany/sandbox/travelsample/launchers/fullapp/build.xml
    tuscany/sandbox/travelsample/launchers/help-pages/build.xml
    tuscany/sandbox/travelsample/launchers/interaction/build.xml
    tuscany/sandbox/travelsample/launchers/introducing/build.xml
    tuscany/sandbox/travelsample/launchers/jumpstart/build.xml
    tuscany/sandbox/travelsample/launchers/notification-corba/build.xml
    tuscany/sandbox/travelsample/launchers/notification-ejb/build.xml
    tuscany/sandbox/travelsample/launchers/notification-jms/build.xml
    tuscany/sandbox/travelsample/launchers/notification-rmi/build.xml
    tuscany/sandbox/travelsample/launchers/notification-ws/build.xml
    tuscany/sandbox/travelsample/launchers/policy/build.xml

Modified: tuscany/sandbox/travelsample/launchers/blog-feed/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/blog-feed/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/blog-feed/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/blog-feed/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.BlogFeedLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/currency-converter-corba/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/currency-converter-corba/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/currency-converter-corba/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/currency-converter-corba/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- When running this sample, the tuscany-host-corba-jse and
        tuscany-host-corba-jse-tns jars need to be present on the classpath.
@@ -36,6 +35,7 @@
         <java classname="scatours.CurrencyConverterCORBALauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
                 <fileset dir="${env.TUSCANY_HOST_CORBA}"/>
             </classpath>

Modified: tuscany/sandbox/travelsample/launchers/currency-converter-jms/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/currency-converter-jms/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/currency-converter-jms/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/currency-converter-jms/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, the JMS broker needs to be
          started and running in a different process. -->
@@ -30,6 +29,7 @@
         <java classname="scatours.JMSBrokerLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <!-- The following is used to bring in the ActiveMQ runtime. -->
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>

Modified: tuscany/sandbox/travelsample/launchers/currency-converter-rmi/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/currency-converter-rmi/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/currency-converter-rmi/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/currency-converter-rmi/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.CurrencyConverterRMILauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/currency-converter-ws/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/currency-converter-ws/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/currency-converter-ws/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/currency-converter-ws/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.CurrencyConverterWSLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/currency-converter/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/currency-converter/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/currency-converter/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/currency-converter/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.CurrencyConverterLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/databinding/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/databinding/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/databinding/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/databinding/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.DatabindingLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/feed-logger/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/feed-logger/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/feed-logger/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/feed-logger/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.FeedLoggerLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/fullapp/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/fullapp/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/fullapp/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/fullapp/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.FullAppLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/help-pages/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/help-pages/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/help-pages/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/help-pages/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.HelpPagesLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/interaction/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/interaction/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/interaction/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/interaction/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.InteractionLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/introducing/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/introducing/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/introducing/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/introducing/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.IntroducingLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/jumpstart/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/jumpstart/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/jumpstart/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/jumpstart/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.JumpstartLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/notification-corba/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/notification-corba/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/notification-corba/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/notification-corba/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, both the CORBA nameserver and
        the CORBA SMS Gateway service need to be started and running in
@@ -45,6 +44,7 @@
         <java classname="scatours.NotificationCORBALauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
                 <fileset dir="${env.TUSCANY_HOST_CORBA}"/>
             </classpath>

Modified: tuscany/sandbox/travelsample/launchers/notification-ejb/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/notification-ejb/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/notification-ejb/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/notification-ejb/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, the EJB server for the SMS Gateway EJB
        needs to be started and running in a different process. -->
@@ -34,6 +33,7 @@
         <java classname="scatours.NotificationEJBLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
                 <fileset dir="${env.OPENEJB_HOME}/lib"/>
             </classpath>

Modified: tuscany/sandbox/travelsample/launchers/notification-jms/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/notification-jms/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/notification-jms/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/notification-jms/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, both the JMS broker and the
        JMS implementation of the SMS gateway need to be started and running
@@ -38,6 +37,7 @@
         <java classname="scatours.NotificationJMSLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/notification-rmi/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/notification-rmi/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/notification-rmi/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/notification-rmi/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, the RMI server for the SMS Gateway
        remote object needs to be started and running in a different process. -->
@@ -34,6 +33,7 @@
         <java classname="scatours.NotificationRMILauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/notification-ws/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/notification-ws/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/notification-ws/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/notification-ws/build.xml Thu Jan  7 02:12:33 2010
@@ -22,7 +22,6 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <!-- Before invoking the "run" target, the JAX-WS server for the SMS Gateway
        remote object needs to be started and running in a different process. -->
@@ -34,6 +33,7 @@
         <java classname="scatours.NotificationWSLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>

Modified: tuscany/sandbox/travelsample/launchers/policy/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/travelsample/launchers/policy/build.xml?rev=896736&r1=896735&r2=896736&view=diff
==============================================================================
--- tuscany/sandbox/travelsample/launchers/policy/build.xml (original)
+++ tuscany/sandbox/travelsample/launchers/policy/build.xml Thu Jan  7 02:12:33 2010
@@ -22,12 +22,12 @@
     <path id="compile-path">
         <pathelement path="../common/target/scatours-launcher-common.jar"/>
     </path>
-    <path id="package-path" refid="compile-path"/>
 
     <target name="run">
         <java classname="scatours.PolicyLauncher" fork="true">
             <classpath>
                 <pathelement location="target/${ant.project.name}.jar"/>
+                <path refid="compile-path"/>
                 <pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
             </classpath>
         </java>