You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rw...@apache.org on 2012/11/02 13:48:00 UTC

svn commit: r1404954 - /stanbol/trunk/commons/indexedgraph/pom.xml

Author: rwesten
Date: Fri Nov  2 12:48:00 2012
New Revision: 1404954

URL: http://svn.apache.org/viewvc?rev=1404954&view=rev
Log:
STANBOL-774: IndexedMGraph MUST NOT export implemented interfaces as this creates problems when running Stanbol within an embedded OSGI environment. Instead it should apply the provider-policy by mentioning the package explicitly in the Import-Package section.

Modified:
    stanbol/trunk/commons/indexedgraph/pom.xml

Modified: stanbol/trunk/commons/indexedgraph/pom.xml
URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/indexedgraph/pom.xml?rev=1404954&r1=1404953&r2=1404954&view=diff
==============================================================================
--- stanbol/trunk/commons/indexedgraph/pom.xml (original)
+++ stanbol/trunk/commons/indexedgraph/pom.xml Fri Nov  2 12:48:00 2012
@@ -59,11 +59,11 @@
           <instructions>
             <Import-Package>
               org.apache.stanbol.commons.indexedgraph,
+              org.apache.clerezza.rdf.core; provide:=true,
               *
             </Import-Package>
             <Export-Package>
-              org.apache.stanbol.commons.indexedgraph;version=${project.version},
-              org.apache.clerezza.rdf.core; provide:=true
+              org.apache.stanbol.commons.indexedgraph;version=${project.version}
             </Export-Package>
           </instructions>
         </configuration>