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. --> |
Jan Willem Janssen | ff8faba | 2014-06-06 15:34:36 +0000 | [diff] [blame] | 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 12 | |
| 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <groupId>org.apache.felix</groupId> |
| 16 | <artifactId>org.apache.felix.http.parent</artifactId> |
Jan Willem Janssen | 9c6fa9f | 2014-06-06 15:34:45 +0000 | [diff] [blame] | 17 | <version>4-SNAPSHOT</version> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 18 | <relativePath>../parent/pom.xml</relativePath> |
| 19 | </parent> |
| 20 | |
| 21 | <name>Apache Felix Servlet API</name> |
| 22 | <description>Provides the Servlet API for use by applications</description> |
| 23 | <artifactId>org.apache.felix.http.servlet-api</artifactId> |
Jan Willem Janssen | 9c6fa9f | 2014-06-06 15:34:45 +0000 | [diff] [blame] | 24 | <version>1.0.1-SNAPSHOT</version> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 25 | <packaging>bundle</packaging> |
Felix Meschberger | 196f222 | 2014-02-18 11:15:08 +0000 | [diff] [blame] | 26 | |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 27 | <scm> |
Jan Willem Janssen | 9c6fa9f | 2014-06-06 15:34:45 +0000 | [diff] [blame] | 28 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/servlet-api</connection> |
| 29 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/servlet-api</developerConnection> |
| 30 | <url>http://svn.apache.org/viewvc/felix/trunk/http/servlet-api/</url> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 31 | </scm> |
| 32 | |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-bundle-plugin</artifactId> |
| 38 | <extensions>true</extensions> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 39 | <configuration> |
Felix Meschberger | 2681b18 | 2014-02-18 14:45:45 +0000 | [diff] [blame] | 40 | <instructions> |
| 41 | <Export-Package> |
| 42 | javax.servlet; |
| 43 | javax.servlet.annotation; |
| 44 | javax.servlet.descriptor; |
| 45 | javax.servlet.http; |
| 46 | version=2.6, |
| 47 | javax.servlet; |
| 48 | javax.servlet.annotation; |
| 49 | javax.servlet.descriptor; |
| 50 | javax.servlet.http; |
| 51 | version=3.0 |
| 52 | </Export-Package> |
| 53 | </instructions> |
Felix Meschberger | d40e0d8 | 2014-02-18 10:41:25 +0000 | [diff] [blame] | 54 | </configuration> |
| 55 | </plugin> |
| 56 | </plugins> |
| 57 | </build> |
| 58 | |
| 59 | <dependencies> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.tomcat</groupId> |
| 62 | <artifactId>tomcat-servlet-api</artifactId> |
| 63 | <version>7.0.8</version> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | |
| 67 | </project> |