Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 1 | <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 2 | license agreements. See the NOTICE file distributed with this work for additional |
| 3 | information regarding copyright ownership. The ASF licenses this file to |
| 4 | you under the Apache License, Version 2.0 (the "License"); you may not use |
| 5 | this file except in compliance with the License. You may obtain a copy of |
| 6 | the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 7 | by applicable law or agreed to in writing, software distributed under the |
| 8 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 9 | OF ANY KIND, either express or implied. See the License for the specific |
| 10 | language governing permissions and limitations under the License. --> |
| 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 12 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
| 13 | > |
| 14 | |
| 15 | <modelVersion>4.0.0</modelVersion> |
| 16 | <parent> |
| 17 | <groupId>org.apache.felix</groupId> |
| 18 | <artifactId>org.apache.felix.http.parent</artifactId> |
| 19 | <version>3-SNAPSHOT</version> |
| 20 | <relativePath>../parent/pom.xml</relativePath> |
| 21 | </parent> |
| 22 | |
| 23 | <name>Apache Felix Servlet API</name> |
| 24 | <description>Provides the Servlet API for use by applications</description> |
| 25 | <artifactId>org.apache.felix.http.servlet-api</artifactId> |
| 26 | <version>0.0.1-SNAPSHOT</version> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 27 | <packaging>bundle</packaging> |
Felix Meschberger | 196f222 | 2014-02-18 11:15:08 +0000 | [diff] [blame] | 28 | |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 29 | <scm> |
| 30 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/servlet-api</connection> |
| 31 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/servlet-api</developerConnection> |
| 32 | <url>http://svn.apache.org/viewvc/felix/trunk/http/servlet-api/</url> |
| 33 | </scm> |
| 34 | |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>maven-bundle-plugin</artifactId> |
| 40 | <extensions>true</extensions> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 41 | <configuration> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 42 | <instructions> |
| 43 | <Export-Package> |
| 44 | javax.servlet; |
| 45 | javax.servlet.annotation; |
| 46 | javax.servlet.descriptor; |
| 47 | javax.servlet.http; |
| 48 | version=2.6, |
| 49 | javax.servlet; |
| 50 | javax.servlet.annotation; |
| 51 | javax.servlet.descriptor; |
| 52 | javax.servlet.http; |
| 53 | version=3.0 |
| 54 | </Export-Package> |
| 55 | </instructions> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 56 | </configuration> |
| 57 | </plugin> |
| 58 | </plugins> |
| 59 | </build> |
| 60 | |
| 61 | <dependencies> |
| 62 | <dependency> |
| 63 | <groupId>org.apache.tomcat</groupId> |
| 64 | <artifactId>tomcat-servlet-api</artifactId> |
| 65 | <version>7.0.8</version> |
| 66 | </dependency> |
| 67 | </dependencies> |
| 68 | |
| 69 | </project> |