blob: 819b7ec870e64797603d2d555bd2d224643cde54 [file] [log] [blame]
Felix Meschbergerd40e0d82014-02-18 10:41:25 +00001<!-- 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 Janssenff8faba2014-06-06 15:34:36 +000011<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 Meschbergerd40e0d82014-02-18 10:41:25 +000012
13 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>org.apache.felix.http.parent</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000017 <version>5-SNAPSHOT</version>
Felix Meschbergerd40e0d82014-02-18 10:41:25 +000018 <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 Janssen43fa9c72014-11-05 09:44:40 +000024 <version>1.0.2-SNAPSHOT</version>
Felix Meschberger2681b182014-02-18 14:45:45 +000025 <packaging>bundle</packaging>
Felix Meschberger196f2222014-02-18 11:15:08 +000026
Felix Meschbergerd40e0d82014-02-18 10:41:25 +000027 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000028 <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 Meschbergerd40e0d82014-02-18 10:41:25 +000031 </scm>
32
33 <build>
34 <plugins>
35 <plugin>
Felix Meschberger2681b182014-02-18 14:45:45 +000036 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
38 <extensions>true</extensions>
Felix Meschbergerd40e0d82014-02-18 10:41:25 +000039 <configuration>
Felix Meschberger2681b182014-02-18 14:45:45 +000040 <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 Meschbergerd40e0d82014-02-18 10:41:25 +000054 </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>