From 25bc47ea8f541b5ecf2b864ab41d40d116b1afd7 Mon Sep 17 00:00:00 2001 From: slaws Date: Sun, 17 May 2009 13:48:39 +0000 Subject: A new launcher for the full travel booking application. Also add some ignores git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@775649 13f79535-47bb-0310-9956-ffa450edef68 --- .../launchers/fullapp-launcher/build.xml | 280 +++++++++++++++++++++ .../launchers/fullapp-launcher/pom.xml | 154 ++++++++++++ .../src/main/java/scatours/LaunchNode.java | 65 +++++ 3 files changed, 499 insertions(+) create mode 100644 sandbox/travelsample/launchers/fullapp-launcher/build.xml create mode 100644 sandbox/travelsample/launchers/fullapp-launcher/pom.xml create mode 100644 sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchNode.java (limited to 'sandbox/travelsample/launchers/fullapp-launcher') diff --git a/sandbox/travelsample/launchers/fullapp-launcher/build.xml b/sandbox/travelsample/launchers/fullapp-launcher/build.xml new file mode 100644 index 0000000000..7f8c78c07d --- /dev/null +++ b/sandbox/travelsample/launchers/fullapp-launcher/build.xml @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/travelsample/launchers/fullapp-launcher/pom.xml b/sandbox/travelsample/launchers/fullapp-launcher/pom.xml new file mode 100644 index 0000000000..9f3fa11efe --- /dev/null +++ b/sandbox/travelsample/launchers/fullapp-launcher/pom.xml @@ -0,0 +1,154 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.5-SNAPSHOT + + + scatours-fullapp-launcher + Apache Tuscany SCA Tours Full Application Launcher + + + + org.apache.tuscany.sca + tuscany-node-api + 1.5-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-node-launcher + 1.5-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-domain-manager + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-node-runtime + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-widget-runtime-tuscany + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-atom-abdera + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-jsonrpc-js + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-jsonrpc-runtime + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-http-runtime + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-ws-axis2 + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-sca-axis2 + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-binding-ejb-runtime + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-ejb + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-implementation-bpel-ode + 1.5-SNAPSHOT + runtime + + + + org.apache.tuscany.sca + tuscany-policy-transaction + 1.5-SNAPSHOT + runtime + + + + org.apache.derby + derby + 10.3.1.4 + runtime + + + + + + ${artifactId} + + diff --git a/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchNode.java b/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchNode.java new file mode 100644 index 0000000000..f615c37c9e --- /dev/null +++ b/sandbox/travelsample/launchers/fullapp-launcher/src/main/java/scatours/LaunchNode.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package scatours; + +import java.io.IOException; + +import org.apache.tuscany.sca.node.SCAContribution; +import org.apache.tuscany.sca.node.SCANode; +import org.apache.tuscany.sca.node.SCANodeFactory; + +public class LaunchNode { + public static void main(String[] args) throws Exception { + LaunchNode.launchFromFileSystemDir(); + } + + // OK for development but you must launch the node from this module + public static void launchFromFileSystemDir(){ + SCANode node = null; + + try { + node = SCANodeFactory.newInstance().createSCANode("scatours.composite", + new SCAContribution("common", "../../contributions/common-contribution/target/classes"), + new SCAContribution("currency", "../../contributions/currency-contribution/target/classes"), + new SCAContribution("hotel", "../../contributions/hotel-contribution/target/classes"), + new SCAContribution("flight", "../../contributions/flight-contribution/target/classes"), + new SCAContribution("car", "../../contributions/car-contribution/target/classes"), + new SCAContribution("trip", "../../contributions/trip-contribution/target/classes"), + 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("creditcard", "../../contributions/creditcard-payment-jaxb-contribution/target/classes"), + new SCAContribution("shoppingcart", "../../contributions/shoppingcart-contribution/target/classes"), + new SCAContribution("scatours", "../../contributions/scatours-contribution/target/classes"), + new SCAContribution("ui", "../../contributions/fullapp-ui-contribution/target/classes")); + node.start(); + + System.out.println("Node started - Press enter to shutdown."); + try { + System.in.read(); + } catch (IOException e) {} + + node.stop(); + + } catch (Exception ex) { + System.out.println(ex.toString()); + } + } +} -- cgit v1.2.3