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 2014/05/28 16:30:02 UTC

svn commit: r1598024 - /felix/sandbox/http-rfc189/api/pom.xml

Author: cziegeler
Date: Wed May 28 14:30:02 2014
New Revision: 1598024

URL: http://svn.apache.org/r1598024
Log:
FELIX-3060 : Add current API from RFC-189

Modified:
    felix/sandbox/http-rfc189/api/pom.xml

Modified: felix/sandbox/http-rfc189/api/pom.xml
URL: http://svn.apache.org/viewvc/felix/sandbox/http-rfc189/api/pom.xml?rev=1598024&r1=1598023&r2=1598024&view=diff
==============================================================================
--- felix/sandbox/http-rfc189/api/pom.xml (original)
+++ felix/sandbox/http-rfc189/api/pom.xml Wed May 28 14:30:02 2014
@@ -46,16 +46,34 @@
                     <instructions>
                         <Export-Package>
                             org.osgi.service.http;version=${http.service.version},
+                            org.osgi.service.http.context;version=1.0.0,
+                            org.osgi.service.http.runtime;version=1.0.0,
+                            org.osgi.service.http.runtime.dto;version=1.0.0,
+                            org.osgi.service.http.whiteboard;version=1.0.0,
                             org.apache.felix.http.api;version=${http.api.version}
                         </Export-Package>
                         <Import-Package>
+                            org.osgi.dto,
                             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,
                             javax.servlet.*;version="[2.3,4)",
                             *
                         </Import-Package>
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/packageinfo</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
@@ -68,6 +86,11 @@
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
             <artifactId>org.osgi.compendium</artifactId>
             <scope>provided</scope>
         </dependency>