You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2018/04/23 06:32:06 UTC

svn commit: r1829813 - /felix/trunk/osgi-r7/http/bridge/pom.xml

Author: cziegeler
Date: Mon Apr 23 06:32:06 2018
New Revision: 1829813

URL: http://svn.apache.org/viewvc?rev=1829813&view=rev
Log:
Use release http.whiteboard api

Modified:
    felix/trunk/osgi-r7/http/bridge/pom.xml

Modified: felix/trunk/osgi-r7/http/bridge/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/osgi-r7/http/bridge/pom.xml?rev=1829813&r1=1829812&r2=1829813&view=diff
==============================================================================
--- felix/trunk/osgi-r7/http/bridge/pom.xml (original)
+++ felix/trunk/osgi-r7/http/bridge/pom.xml Mon Apr 23 06:32:06 2018
@@ -50,8 +50,11 @@
                             org.apache.felix.http.bridge.internal.BridgeActivator
                         </Bundle-Activator>
                         <Export-Package>
-                            org.apache.felix.http.api,
-                            org.osgi.service.http.*;-split-package:=merge-first
+                            org.osgi.service.http,
+                            org.osgi.service.http.context,
+                            org.osgi.service.http.runtime,
+                            org.osgi.service.http.runtime.dto,
+                            org.osgi.service.http.whiteboard
                         </Export-Package>
                         <Private-Package>
                             org.apache.felix.http.base.*,
@@ -86,9 +89,16 @@
             <artifactId>osgi.core</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.http.api</artifactId>
-            <version>3.0.1-R7-SNAPSHOT</version>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.http</artifactId>
+            <version>1.2.1</version>
+           <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.http.whiteboard</artifactId>
+            <version>1.1.0</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>commons-fileupload</groupId>