diff options
author | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-25 16:50:33 +0000 |
---|---|---|
committer | kelvingoodson <kelvingoodson@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-25 16:50:33 +0000 |
commit | e1070dcd880728a83b02d71c76e972fccf6e4996 (patch) | |
tree | 687a5996219a55df8f3a94ea49eac34d891c94f6 /sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml | |
parent | 66b949a8a7f78a0ceaa9eb52f6be07ff69a12ff4 (diff) |
TUSCANY-3677 getting-started clearup
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1001271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml')
-rw-r--r-- | sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml b/sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml new file mode 100644 index 0000000000..f715c8eb23 --- /dev/null +++ b/sca-java-2.x/trunk/samples/getting-started/implementation-webapp/pom.xml @@ -0,0 +1,52 @@ +<?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-webapps</artifactId> + <packaging>pom</packaging> + <name>Apache Tuscany SCA Getting Started Sample Web Applications</name> + + <profiles> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>helloworld</module> + <module>helloworld-bpel</module> + <module>helloworld-jaxrs</module> + <module>helloworld-jms</module> + <module>helloworld-js-client</module> + <module>helloworld-jsf</module> + <module>helloworld-jsp</module> + <module>helloworld-servlet</module> + <module>helloworld-spring</module> + <module>helloworld-stripes</module> + </modules> + </profile> + </profiles> +</project> |