summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/tuscany-provisioning/pom.xml
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-11-09 23:34:56 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-11-09 23:34:56 +0000
commitd5319fc19f29bad7971ac369f1dc365441ae35b6 (patch)
tree2f940b5bfe8d6afe8c3b491be4a8719589ef6520 /sandbox/rfeng/tuscany-provisioning/pom.xml
parent80b0aff41c6d21c5faa91f5e37e247b89ca0d404 (diff)
Prototyping the provisioning support for Tuscany SCA:
1) Find the "extension" by XML qnames or Java types 2) Resolve the maven dependencies for the "extension" 3) Traverse the contribution/composite model to identify required "extensions" 4) Provision the Node to a runtime that is capable of handling the "extensions" git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/tuscany-provisioning/pom.xml')
-rw-r--r--sandbox/rfeng/tuscany-provisioning/pom.xml73
1 files changed, 73 insertions, 0 deletions
diff --git a/sandbox/rfeng/tuscany-provisioning/pom.xml b/sandbox/rfeng/tuscany-provisioning/pom.xml
new file mode 100644
index 0000000000..fcaa6aff08
--- /dev/null
+++ b/sandbox/rfeng/tuscany-provisioning/pom.xml
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<project>
+
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-modules</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>tuscany-provision</artifactId>
+ <name>Apache Tuscany SCA Provisioning</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-extensibility</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-ws-axis2</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+
+
+ <dependency>
+ <groupId>org.apache.maven.shared</groupId>
+ <artifactId>maven-runtime</artifactId>
+ <version>1.0-alpha-2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-embedder</artifactId>
+ <version>2.0.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-core</artifactId>
+ <version>2.0.8</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+
+</project>