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 2015/08/14 15:04:52 UTC

svn commit: r1695889 - /felix/trunk/http/bridge/pom.xml

Author: cziegeler
Date: Fri Aug 14 13:04:52 2015
New Revision: 1695889

URL: http://svn.apache.org/r1695889
Log:
Adapt to new parent pom

Modified:
    felix/trunk/http/bridge/pom.xml

Modified: felix/trunk/http/bridge/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/http/bridge/pom.xml?rev=1695889&r1=1695888&r2=1695889&view=diff
==============================================================================
--- felix/trunk/http/bridge/pom.xml (original)
+++ felix/trunk/http/bridge/pom.xml Fri Aug 14 13:04:52 2015
@@ -49,7 +49,11 @@
                         </Bundle-Activator>
                         <Export-Package>
                             org.apache.felix.http.api,
-                            org.osgi.service.http
+                            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.*,
@@ -59,6 +63,12 @@
                         	org.osgi.service.useradmin;resolution:=optional,
                             *
                         </Import-Package>
+                        <Provide-Capability>
+                            osgi.implementation;osgi.implementation="osgi.http";version:Version="1.0";
+                            uses:="javax.servlet,javax.servlet.http,org.osgi.service.http.context,org.osgi.service.http.whiteboard",
+                            osgi.service;objectClass:List&lt;String&gt;="org.osgi.service.http.runtime.HttpServiceRuntime";
+                            uses:="org.osgi.service.http.runtime,org.osgi.service.http.runtime.dto"
+                        </Provide-Capability>
                     </instructions>
                 </configuration>
             </plugin>
@@ -69,19 +79,14 @@
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
-            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <version>4.2.0</version>
-            <scope>provided</scope>
+            <artifactId>osgi.core</artifactId>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.compendium</artifactId>
-            <version>4.2.0</version>
-            <scope>provided</scope>
+            <artifactId>osgi.cmpn</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>