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/05/17 20:12:59 UTC

svn commit: r945281 - in /tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0: binaries/src/main/resources/ contributions/payment-groovy/ contributions/payment-groovy/src/main/resources/ contributions/payment-python/ contributions/payment-python/sr...

Author: nash
Date: Mon May 17 18:12:59 2010
New Revision: 945281

URL: http://svn.apache.org/viewvc?rev=945281&view=rev
Log:
Fix typos and remove unused files

Removed:
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src/main/resources/CreditCardPayment.wsdl
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/main/resources/CreditCardPayment.wsdl
Modified:
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/binaries/src/main/resources/build-launchers.xml
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/build.xml
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/pom.xml
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/build.xml
    tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/pom.xml

Modified: tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/binaries/src/main/resources/build-launchers.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/binaries/src/main/resources/build-launchers.xml?rev=945281&r1=945280&r2=945281&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/binaries/src/main/resources/build-launchers.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/binaries/src/main/resources/build-launchers.xml Mon May 17 18:12:59 2010
@@ -257,7 +257,7 @@
     <target name="run-payment-python">
         <java classname="scatours.payment.PaymentLauncher" fork="true" failonerror="true">
             <classpath>
-                <pathelement location="scatours-launcher-payment-groovy.jar"/>
+                <pathelement location="scatours-launcher-payment-python.jar"/>
                 <path refid="scatours.tuscany-manifest"/>
             </classpath>
         </java>

Modified: tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/build.xml?rev=945281&r1=945280&r2=945281&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/build.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/build.xml Mon May 17 18:12:59 2010
@@ -22,11 +22,6 @@
 
     <target name="wsdljava">
         <antcall target="wsimport">
-            <param name="wsdlfile" value="CreditCardPayment.wsdl"/>
-            <param name="javaclass" value="com/tuscanyscatours/payment/creditcard/CreditCardPayment.class"/>
-            <param name="package" value="com.tuscanyscatours.payment.creditcard"/>
-        </antcall>
-        <antcall target="wsimport">
             <param name="wsdlfile" value="EmailGateway.wsdl"/>
             <param name="javaclass" value="com/tuscanyscatours/emailgateway/EmailGateway.class"/>
             <param name="package" value="com.tuscanyscatours.emailgateway"/>

Modified: tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/pom.xml?rev=945281&r1=945280&r2=945281&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/pom.xml Mon May 17 18:12:59 2010
@@ -119,24 +119,6 @@
                     </configuration>
                 </execution> 
                 <execution>
-                    <id>payment.creditcard</id>
-                    <phase>process-sources</phase>
-                    <goals>
-                        <goal>wsimport</goal>
-                    </goals>
-                    <configuration>
-                        <packageName>com.tuscanyscatours.payment.creditcard</packageName>
-                        <wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
-                        <wsdlFiles>
-                            <wsdlFile>CreditCardPayment.wsdl</wsdlFile>
-                        </wsdlFiles>
-                        <sourceDestDir>${project.build.directory}/jaxws-source</sourceDestDir>
-                        <staleFile>${project.build.directory}/jaxws-source/stale/creditcard.stale</staleFile>
-                        <verbose>false</verbose>
-                        <xnocompile>true</xnocompile>
-                    </configuration>
-                </execution> 
-                <execution>
                     <id>emailgateway</id>
                     <phase>process-sources</phase>
                     <goals>

Modified: tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/build.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/build.xml?rev=945281&r1=945280&r2=945281&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/build.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/build.xml Mon May 17 18:12:59 2010
@@ -17,16 +17,11 @@
  * under the License.
 -->
 
-<project name="scatours-contribution-payment-pythin" default="compile">
+<project name="scatours-contribution-payment-python" default="compile">
     <import file="../../antdefs.xml"/>
 
     <target name="wsdljava">
         <antcall target="wsimport">
-            <param name="wsdlfile" value="CreditCardPayment.wsdl"/>
-            <param name="javaclass" value="com/tuscanyscatours/payment/creditcard/CreditCardPayment.class"/>
-            <param name="package" value="com.tuscanyscatours.payment.creditcard"/>
-        </antcall>
-        <antcall target="wsimport">
             <param name="wsdlfile" value="EmailGateway.wsdl"/>
             <param name="javaclass" value="com/tuscanyscatours/emailgateway/EmailGateway.class"/>
             <param name="package" value="com.tuscanyscatours.emailgateway"/>

Modified: tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/pom.xml?rev=945281&r1=945280&r2=945281&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/pom.xml (original)
+++ tuscany/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/pom.xml Mon May 17 18:12:59 2010
@@ -119,24 +119,6 @@
                     </configuration>
                 </execution> 
                 <execution>
-                    <id>payment.creditcard</id>
-                    <phase>process-sources</phase>
-                    <goals>
-                        <goal>wsimport</goal>
-                    </goals>
-                    <configuration>
-                        <packageName>com.tuscanyscatours.payment.creditcard</packageName>
-                        <wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
-                        <wsdlFiles>
-                            <wsdlFile>CreditCardPayment.wsdl</wsdlFile>
-                        </wsdlFiles>
-                        <sourceDestDir>${project.build.directory}/jaxws-source</sourceDestDir>
-                        <staleFile>${project.build.directory}/jaxws-source/stale/creditcard.stale</staleFile>
-                        <verbose>false</verbose>
-                        <xnocompile>true</xnocompile>
-                    </configuration>
-                </execution> 
-                <execution>
                     <id>emailgateway</id>
                     <phase>process-sources</phase>
                     <goals>