summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-integration/testing/sca/itest/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-integration/testing/sca/itest/pom.xml')
-rw-r--r--branches/sca-java-integration/testing/sca/itest/pom.xml135
1 files changed, 135 insertions, 0 deletions
diff --git a/branches/sca-java-integration/testing/sca/itest/pom.xml b/branches/sca-java-integration/testing/sca/itest/pom.xml
new file mode 100644
index 0000000000..63a370d19d
--- /dev/null
+++ b/branches/sca-java-integration/testing/sca/itest/pom.xml
@@ -0,0 +1,135 @@
+<?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>
+ <parent>
+ <groupId>org.apache.tuscany.testing</groupId>
+ <artifactId>tuscany-testing-sca</artifactId>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.tuscany.testing</groupId>
+ <artifactId>sca-itest</artifactId>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany SCA Integration Test Suite</name>
+
+ <profiles>
+ <!-- default profile -->
+ <profile>
+ <id>stable</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <!--module>spec</module-->
+ <module>property</module>
+ <module>exceptions</module>
+ <module>exceptions-crossBinding</module>
+ <module>exceptions-crossBinding-ws</module>
+ <module>callback-api</module>
+ <module>callback-basic</module>
+ <module>callback-complexType</module>
+ <module>callback-id</module>
+ <module>callback-setCallback</module>
+ <module>callback-setCallbackConversation</module>
+ <module>wsdl</module>
+ <module>conversations</module>
+ <module>bindings</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>integration</id>
+ <modules>
+ <module>spec</module>
+ <module>property</module>
+ <module>exceptions</module>
+ <module>exceptions-crossBinding</module>
+ <module>exceptions-crossBinding-ws</module>
+ <module>callback-api</module>
+ <module>callback-basic</module>
+ <module>callback-complexType</module>
+ <module>callback-id</module>
+ <module>callback-setCallback</module>
+ <module>callback-setCallbackConversation</module>
+ <module>conversations</module>
+ <module>wsdl</module>
+ <module>bindings</module>
+ <module>databindings</module>
+ <module>operation-overloading</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>unstable</id>
+ <modules>
+ <module>spec</module>
+ <module>property</module>
+ <module>exceptions</module>
+ <module>exceptions-crossBinding</module>
+ <module>exceptions-crossBinding-ws</module>
+ <module>callback-api</module>
+ <module>callback-basic</module>
+ <module>callback-complexType</module>
+ <module>callback-id</module>
+ <module>callback-setCallback</module>
+ <module>callback-setCallbackConversation</module>
+ <module>conversations</module>
+ <module>wsdl</module>
+ <module>bindings</module>
+ <module>databindings</module>
+ <module>operation-overloading</module>
+ </modules>
+ </profile>
+
+ </profiles>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca.kernel</groupId>
+ <artifactId>tuscany-api</artifactId>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca.kernel</groupId>
+ <artifactId>tuscany-core</artifactId>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca.extensions.axis2</groupId>
+ <artifactId>tuscany-axis2</artifactId>
+ <scope>runtime</scope>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca.services</groupId>
+ <artifactId>tuscany-http-jetty</artifactId>
+ <scope>runtime</scope>
+ <version>0.1-integration-incubating-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.2</version>
+ </dependency>
+ </dependencies>
+
+</project>