apache-tuscany/otest/newlayout/pom.xml

144 lines
4.5 KiB
XML

<?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-sca</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>tuscany-otests</artifactId>
<name>OASIS SCA Specification Tests</name>
<packaging>pom</packaging>
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-feature-api</artifactId>
<type>pom</type>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-feature-core</artifactId>
<type>pom</type>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-feature-webservice</artifactId>
<type>pom</type>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>sca-assembly</module>
<module>tuscany-test-runner</module>
<module>sca-java-caa</module>
<module>tuscany-java-caa-test-runner</module>
<module>sca-java-ci</module>
<module>tuscany-java-ci-test-runner</module>
<module>sca-policy</module>
<module>tuscany-policy-test-runner</module>
<module>sca-jms</module>
<module>tuscany-jms-test-runner</module>
<module>sca-ws</module>
<module>tuscany-ws-test-runner</module>
</modules>
</profile>
<profile>
<id>assembly</id>
<modules>
<module>sca-assembly</module>
<module>tuscany-test-runner</module>
</modules>
</profile>
<profile>
<id>javacaa</id>
<modules>
<module>sca-java-caa</module>
<module>tuscany-java-caa-test-runner</module>
</modules>
</profile>
<profile>
<id>javaci</id>
<modules>
<module>sca-java-ci</module>
<module>tuscany-java-ci-test-runner</module>
</modules>
</profile>
<profile>
<id>policy</id>
<modules>
<module>sca-policy</module>
<module>tuscany-policy-test-runner</module>
</modules>
</profile>
<profile>
<id>jms</id>
<modules>
<module>sca-jms</module>
<module>tuscany-jms-test-runner</module>
</modules>
</profile>
<profile>
<id>ws</id>
<modules>
<module>sca-ws</module>
<module>tuscany-ws-test-runner</module>
</modules>
</profile>
</profiles>
</project>