blob: 12e3810a7ce4ed69a183cda7a31ac82336647843 [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>
Carsten Ziegelerb5936932015-08-05 23:10:53 +000017 <version>7</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>
Carsten Ziegelerc6ecfc22015-01-29 12:15:00 +000024 <version>1.1.1-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>
Carsten Ziegelerc6ecfc22015-01-29 12:15:00 +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;
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000051 version=3.0,
52 javax.servlet;
53 javax.servlet.annotation;
54 javax.servlet.descriptor;
55 javax.servlet.http;
56 version=3.1
Felix Meschberger2681b182014-02-18 14:45:45 +000057 </Export-Package>
Carsten Ziegelerfefda042015-05-15 10:08:55 +000058 <Provide-Capability>
59 osgi.contract;osgi.contract="JavaServlet";version:Version="3.1";
60 uses:="javax.servlet,javax.servlet.http,javax.servlet.descriptor,javax.servlet.annotation"
61 </Provide-Capability>
Jan Willem Janssen16fd98c2015-01-15 15:39:00 +000062 <Embed-Dependency>tomcat-servlet-api;inline=true</Embed-Dependency>
Felix Meschberger2681b182014-02-18 14:45:45 +000063 </instructions>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000064 <!-- Skip baselining -->
65 <skip>true</skip>
Felix Meschbergerd40e0d82014-02-18 10:41:25 +000066 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71 <dependencies>
72 <dependency>
73 <groupId>org.apache.tomcat</groupId>
74 <artifactId>tomcat-servlet-api</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000075 <version>8.0.9</version>
Felix Meschbergerd40e0d82014-02-18 10:41:25 +000076 </dependency>
77 </dependencies>
78
79</project>