blob: e042b5eb1de0a28fd73feb38121f80ecbea5cf2c [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 Ziegeler28733aa2015-08-10 06:53:16 +000025 <version>7</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 Bridge</name>
30 <artifactId>org.apache.felix.http.bridge</artifactId>
Carsten Ziegeler52b0ec62015-10-09 15:04:15 +000031 <version>3.0.3-SNAPSHOT</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000032 <packaging>jar</packaging>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000033
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Carsten Ziegeler52b0ec62015-10-09 15:04:15 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/bridge</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/bridge</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/bridge/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <configuration>
46 <instructions>
47 <Bundle-Activator>
48 org.apache.felix.http.bridge.internal.BridgeActivator
49 </Bundle-Activator>
50 <Export-Package>
Jan Willem Janssen16fd98c2015-01-15 15:39:00 +000051 org.apache.felix.http.api,
Sten Roger Sandvik20ae1dd2015-10-01 16:54:35 +000052 org.osgi.service.http.*;-split-package:=merge-first
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000053 </Export-Package>
54 <Private-Package>
55 org.apache.felix.http.base.*,
56 org.apache.felix.http.bridge.internal.*
57 </Private-Package>
58 <Import-Package>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000059 org.osgi.service.useradmin;resolution:=optional,
60 *
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000061 </Import-Package>
Carsten Ziegeler1d41c3a2015-08-14 13:04:52 +000062 <Provide-Capability>
63 osgi.implementation;osgi.implementation="osgi.http";version:Version="1.0";
64 uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
65 osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
66 uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto"
67 </Provide-Capability>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000068 </instructions>
69 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73
74 <dependencies>
75 <dependency>
76 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000077 <artifactId>javax.servlet-api</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000078 </dependency>
79 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000080 <groupId>org.osgi</groupId>
Carsten Ziegeler1d41c3a2015-08-14 13:04:52 +000081 <artifactId>osgi.core</artifactId>
Richard S. Hall4b262302009-10-01 08:55:33 +000082 </dependency>
83 <dependency>
84 <groupId>org.osgi</groupId>
Carsten Ziegeler1d41c3a2015-08-14 13:04:52 +000085 <artifactId>osgi.cmpn</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000086 </dependency>
87 <dependency>
Carsten Ziegeler28733aa2015-08-10 06:53:16 +000088 <groupId>org.apache.felix</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000089 <artifactId>org.apache.felix.http.api</artifactId>
Carsten Ziegeler28733aa2015-08-10 06:53:16 +000090 <version>3.0.0</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000091 </dependency>
92 <dependency>
Carsten Ziegeler28733aa2015-08-10 06:53:16 +000093 <groupId>org.apache.felix</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000094 <artifactId>org.apache.felix.http.base</artifactId>
Carsten Ziegeler12512da2015-10-09 15:05:55 +000095 <version>3.0.3-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000096 </dependency>
97 </dependencies>
98
99</project>