diff options
author | dims <dims@13f79535-47bb-0310-9956-ffa450edef68> | 2008-06-17 00:23:01 +0000 |
---|---|---|
committer | dims <dims@13f79535-47bb-0310-9956-ffa450edef68> | 2008-06-17 00:23:01 +0000 |
commit | bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a (patch) | |
tree | 38a92061c0793434c4be189f1d70c3458b6bc41d /sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF |
Move Tuscany from Incubator to top level.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF')
-rw-r--r-- | sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml | 21 | ||||
-rw-r--r-- | sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml | 33 |
2 files changed, 54 insertions, 0 deletions
diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml new file mode 100644 index 0000000000..215f8e759d --- /dev/null +++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/geronimo-web.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.2"> + <dep:environment xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2"> + <dep:moduleId> + <dep:groupId>org.apache.tuscany.samples</dep:groupId> + <dep:artifactId>sample-geronimo-webs</dep:artifactId> + <dep:version>1.0-incubating-SNAPSHOT</dep:version> + <dep:type>war</dep:type> + </dep:moduleId> + <dep:dependencies> + <dep:dependency> + <dep:groupId>org.apache.geronimo.configs</dep:groupId> + <dep:artifactId>geronimo-tuscany-plugin</dep:artifactId> + <dep:version>1.0-incubating-SNAPSHOT</dep:version> + <dep:type>car</dep:type> + </dep:dependency> + </dep:dependencies> + <dep:hidden-classes /> + <dep:non-overridable-classes /> + </dep:environment> +</web-app>
\ No newline at end of file diff --git a/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml new file mode 100644 index 0000000000..8e2ae22d9c --- /dev/null +++ b/sandbox/rfeng/geronimo-demo/webs/WebContent/WEB-INF/web.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + * 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. +--> + +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web +Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> +<web-app> + + <display-name>Tuscany BigBank Service Sample</display-name> + + <welcome-file-list id="WelcomeFileList"> + <welcome-file>index.jsp</welcome-file> + </welcome-file-list> + + + +</web-app> |