blob: c82738309f1a43a28816d8e1b64633124d0d5a83 [file] [log] [blame]
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Sten Roger Sandvikee4dd852009-09-28 20:30:00 +000019<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">
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
Carsten Ziegeler430c7982015-02-02 08:34:34 +000025 <version>5</version>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000026 <relativePath>../parent/pom.xml</relativePath>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000027 </parent>
28
29 <name>Apache Felix Http Api</name>
30 <artifactId>org.apache.felix.http.api</artifactId>
Carsten Ziegeler8b501742015-01-29 12:38:55 +000031 <version>3.0.0-SNAPSHOT</version>
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000032 <packaging>bundle</packaging>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000033
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/api</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/api</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/api/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000045 <extensions>true</extensions>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000046 <configuration>
47 <instructions>
48 <Export-Package>
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000049 org.osgi.service.http,
50 org.osgi.service.http.context,
51 org.osgi.service.http.runtime,
52 org.osgi.service.http.runtime.dto,
53 org.osgi.service.http.whiteboard,
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000054 org.apache.felix.http.api
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000055 </Export-Package>
Felix Meschbergerc0e85832014-02-18 10:52:40 +000056 <Import-Package>
Felix Meschberger7953d582014-02-18 11:53:54 +000057 org.osgi.service.http,
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000058 org.osgi.service.http.context,
59 org.osgi.service.http.runtime,
60 org.osgi.service.http.runtime.dto,
61 org.osgi.service.http.whiteboard,
Felix Meschbergerc0e85832014-02-18 10:52:40 +000062 javax.servlet.*;version="[2.3,4)",
63 *
64 </Import-Package>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000065 </instructions>
66 </configuration>
67 </plugin>
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000068 <plugin>
69 <groupId>org.apache.rat</groupId>
70 <artifactId>apache-rat-plugin</artifactId>
71 <configuration>
72 <excludes>
73 <exclude>**/packageinfo</exclude>
74 </excludes>
75 </configuration>
76 </plugin>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000077 </plugins>
78 </build>
79
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000080 <dependencies>
81 <dependency>
82 <groupId>javax.servlet</groupId>
Carsten Ziegeler4c325f32015-01-29 13:11:25 +000083 <artifactId>javax.servlet-api</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.core</artifactId>
89 <version>6.0.0</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.annotation</artifactId>
95 <version>6.0.0</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000096 <scope>provided</scope>
97 </dependency>
Carsten Ziegeler3056da22014-08-06 06:00:49 +000098 <!-- Explicitely use 5.0.0 to export version 1.2.1 of the http service api -->
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000099 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +0000100 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000101 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler3056da22014-08-06 06:00:49 +0000102 <version>5.0.0</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000103 <scope>provided</scope>
104 </dependency>
105 </dependencies>
106
107</project>