diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-27 18:53:14 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-27 18:53:14 +0000 |
commit | 4ac41f2d4ab036130d4febb0e0b92e6bad5c96ef (patch) | |
tree | 3ba6e4617f51512978737165e3bc0c2755f760fb | |
parent | 5d677e3d9ff90ad0b7b6c8fd2d2019978ac754a8 (diff) |
Add servlet-api dep
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@779271 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/sca/samples/webapps/helloworld-servlet/pom.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/java/sca/samples/webapps/helloworld-servlet/pom.xml b/java/sca/samples/webapps/helloworld-servlet/pom.xml index 59de67f7e8..4a26841ae8 100644 --- a/java/sca/samples/webapps/helloworld-servlet/pom.xml +++ b/java/sca/samples/webapps/helloworld-servlet/pom.xml @@ -7,15 +7,15 @@ * 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.
+ * under the License.
-->
<project>
<modelVersion>4.0.0</modelVersion>
@@ -39,6 +39,12 @@ <scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
|