Author: enridaga
Date: Mon Sep  9 12:01:55 2013
New Revision: 1521062

URL: http://svn.apache.org/r1521062
Log:
STANBOL-1152 Added some dependencies to make the bundle start with the current 
modifications. This to ease the debug of changed made before start to work on 
the jersey specific stuff. To make it work, however, it is also needed to hack 
the sling.config adding sun.security.action to the list of 
org.osgi.framework.system.packages. 

Modified:
    stanbol/branches/commons-ng/ontologymanager/web/pom.xml

Modified: stanbol/branches/commons-ng/ontologymanager/web/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/branches/commons-ng/ontologymanager/web/pom.xml?rev=1521062&r1=1521061&r2=1521062&view=diff
==============================================================================
--- stanbol/branches/commons-ng/ontologymanager/web/pom.xml (original)
+++ stanbol/branches/commons-ng/ontologymanager/web/pom.xml Mon Sep  9 12:01:55 
2013
@@ -57,13 +57,15 @@
         <configuration>
           <instructions>
             <Import-Package>
-              javax.ws.rs.*; version="[0,2)",
-              org.apache.stanbol.commons.web.base; provide:=true; 
version="[0.11,0.13)",
+              javax.ws.rs.*; version="[2.0,3]",
+              org.apache.stanbol.commons.web.base; provide:=true; 
version="[1.0.0,2)",
+              com.sun.jersey.*; version="[1.15.0,2)",
+              com.sun.net.httpserver.*,
               *
             </Import-Package>            
-            <!-- Export-Package>
-              org.apache.stanbol.ontologymanager.web.*
-            </Export-Package -->
+            <Export-Package>
+            org.objectweb.asm.*,  com.sun.jersey.*, org.jvnet.mimepull.*, 
sun.*, com.sun.*, com.sun.net.httpserver.*
+            </Export-Package>
             <Private-Package>
               org.apache.stanbol.ontologymanager.web; 
version=${project.version},
               org.apache.stanbol.ontologymanager.web.resources; 
version=${project.version},
@@ -140,12 +142,22 @@
       <groupId>com.sun.jersey</groupId>
       <artifactId>jersey-server</artifactId>
       <version>1.15</version>
+      <scope>compile</scope>
     </dependency>
     <dependency> <!-- because of multipart -->
       <groupId>com.sun.jersey.contribs</groupId>
       <artifactId>jersey-multipart</artifactId>
       <version>1.15</version>
+      <scope>compile</scope>
     </dependency>
+    <dependency> <!-- because of jersey (temporary) -->
+      <groupId>com.sun.net.httpserver</groupId>
+      <artifactId>http</artifactId>
+      <version>20070405</version>
+      <scope>compile</scope>
+    </dependency>
+
+
 
     <!-- generic tax -->
     <dependency>


Reply via email to