diff options
author | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-14 12:49:45 +0000 |
---|---|---|
committer | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-14 12:49:45 +0000 |
commit | f4598463e2a1e7a766288e741a8b261de44b1ba9 (patch) | |
tree | d0a78f9508e8a48351f8bf2753397aebe4f597bd | |
parent | c186ff24ecfc13e14e4b29130c7ca387f7050dd5 (diff) |
TUSCANY-3677 add folders for sample applications and demonstrations of sca features
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@996878 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/samples/applications/pom.xml | 42 | ||||
-rw-r--r-- | sca-java-2.x/trunk/samples/pom.xml | 2 | ||||
-rw-r--r-- | sca-java-2.x/trunk/samples/sca-features/pom.xml | 42 |
3 files changed, 86 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/applications/pom.xml b/sca-java-2.x/trunk/samples/applications/pom.xml new file mode 100644 index 0000000000..23d2824a1c --- /dev/null +++ b/sca-java-2.x/trunk/samples/applications/pom.xml @@ -0,0 +1,42 @@ +<?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-samples</artifactId> + <version>2.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>tuscany-samples-applications</artifactId> + <packaging>pom</packaging> + <name>Apache Tuscany Sample Applications</name> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + </modules> + </profile> + </profiles> +</project> diff --git a/sca-java-2.x/trunk/samples/pom.xml b/sca-java-2.x/trunk/samples/pom.xml index fa3a9994c7..8f3526ef8e 100644 --- a/sca-java-2.x/trunk/samples/pom.xml +++ b/sca-java-2.x/trunk/samples/pom.xml @@ -31,6 +31,8 @@ <modules> <module>getting-started</module> + <module>sca-features</module> + <module>applications</module> <module>calculator-osgi</module> <module>calculator-rest-osgi</module> diff --git a/sca-java-2.x/trunk/samples/sca-features/pom.xml b/sca-java-2.x/trunk/samples/sca-features/pom.xml new file mode 100644 index 0000000000..56f446425d --- /dev/null +++ b/sca-java-2.x/trunk/samples/sca-features/pom.xml @@ -0,0 +1,42 @@ +<?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-samples</artifactId> + <version>2.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>tuscany-samples-sca-features</artifactId> + <packaging>pom</packaging> + <name>Apache Tuscany Samples Demonstrating Tuscany Features</name> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + </modules> + </profile> + </profiles> +</project> |