summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-01 21:50:30 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-01 21:50:30 +0000
commitc6886a1838049552fdb88f0247c930b304cfd0db (patch)
tree218560e2550a370eb68f389170cc54a1eb0b5d73 /sandbox/travelsample/launchers
parentf3d8c7082f250431dfe35ee33af41bca04229c42 (diff)
Add a spring version of the payment component which has no SCA annotations and uses and internal composition with a local bean to represent the payment and email-gateway wiring. Doesn't quite work yet in the full app as the contribution processing is not picking up the spring context for some reason.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@780847 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers')
-rw-r--r--sandbox/travelsample/launchers/fullapp-launcher/pom.xml14
-rw-r--r--sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchFullAppNode.java1
2 files changed, 15 insertions, 0 deletions
diff --git a/sandbox/travelsample/launchers/fullapp-launcher/pom.xml b/sandbox/travelsample/launchers/fullapp-launcher/pom.xml
index b2104f6291..1f259a9d68 100644
--- a/sandbox/travelsample/launchers/fullapp-launcher/pom.xml
+++ b/sandbox/travelsample/launchers/fullapp-launcher/pom.xml
@@ -130,6 +130,20 @@
<artifactId>tuscany-implementation-bpel-ode</artifactId>
<version>1.5</version>
<scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-spring</artifactId>
+ <version>1.5</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-spring-runtime</artifactId>
+ <version>1.5</version>
+ <scope>runtime</scope>
</dependency>
<dependency>
diff --git a/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchFullAppNode.java b/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchFullAppNode.java
index 054061a14b..4ef76d1807 100644
--- a/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchFullAppNode.java
+++ b/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchFullAppNode.java
@@ -44,6 +44,7 @@ public class LaunchFullAppNode {
new SCAContribution("tripbooking", "../../contributions/tripbooking-contribution/target/classes"),
new SCAContribution("travelcatalog", "../../contributions/travelcatalog-contribution/target/classes"),
new SCAContribution("payment", "../../contributions/payment-java-contribution/target/classes"),
+ //new SCAContribution("payment", "../../contributions/payment-spring-contribution/target/classes"),
new SCAContribution("creditcard", "../../contributions/creditcard-payment-jaxb-contribution/target/classes"),
new SCAContribution("shoppingcart", "../../contributions/shoppingcart-contribution/target/classes"),
new SCAContribution("scatours", "../../contributions/scatours-contribution/target/classes"),