diff options
author | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-13 09:43:42 +0000 |
---|---|---|
committer | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-13 09:43:42 +0000 |
commit | 17a2977fb6c7d67851324a3492bf3376ff3db8c8 (patch) | |
tree | 9211ec862a280b11fbec0d4c3088baf09f2d1c8f | |
parent | 469cda8a3933309571383eb35ea022169dd99ee3 (diff) |
match poms to changed structure
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@996472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-java-2.x/trunk/samples/getting-started/pom.xml | 46 | ||||
-rw-r--r-- | sca-java-2.x/trunk/samples/pom.xml | 12 |
2 files changed, 50 insertions, 8 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/pom.xml b/sca-java-2.x/trunk/samples/getting-started/pom.xml new file mode 100644 index 0000000000..b682bb3092 --- /dev/null +++ b/sca-java-2.x/trunk/samples/getting-started/pom.xml @@ -0,0 +1,46 @@ +<?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-getting-started</artifactId> + <packaging>pom</packaging> + <name>Apache Tuscany Getting Started Samples</name> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>helloworld</module> + <module>helloworld-scaclient</module> + <module>helloworld-bpel</module> + <module>helloworld-spring</module> + </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 a5b1c452ca..fa3a9994c7 100644 --- a/sca-java-2.x/trunk/samples/pom.xml +++ b/sca-java-2.x/trunk/samples/pom.xml @@ -30,6 +30,8 @@ <name>Apache Tuscany SCA Samples</name> <modules> + <module>getting-started</module> + <module>calculator-osgi</module> <module>calculator-rest-osgi</module> <module>dosgi-calculator</module> @@ -37,8 +39,7 @@ <module>dosgi-dynamic-calculator</module> <module>dosgi-dynamic-calculator-operations</module> <module>calculator-scaclient</module> - <module>helloworld</module> - <module>helloworld-scaclient</module> + <!-- ********* IF YOU ADD ANY SAMPLES THEN ALSO ADD THEM TO distribution\all\src\main\components\bin-samples.xml @@ -48,12 +49,7 @@ ALSO SAMPLES SHOULD HAVE A TEST IN itest/distribution TO ENSURE THAT THEY WORK PROPERLY OUT OF A DISTRIBUTION ********* --> - - <module>helloworld-bpel</module> - <module>helloworld-spring</module> - <module>webapps/helloworld</module> - <module>webapps/helloworld-bpel</module> - <module>webapps/helloworld-jaxrs</module> + <module>webapps/helloworld-jms</module> <module>webapps/helloworld-js-client</module> <module>webapps/helloworld-jsp</module> |