You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by og...@apache.org on 2011/12/01 18:21:14 UTC

svn commit: r1209159 - /incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml

Author: ogrisel
Date: Thu Dec  1 17:21:13 2011
New Revision: 1209159

URL: http://svn.apache.org/viewvc?rev=1209159&view=rev
Log:
fix OSGi deployment step 2: make metaxa use provided stanbol dependency to workaround issues with recursive dependency embedding

Modified:
    incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml

Modified: incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml?rev=1209159&r1=1209158&r2=1209159&view=diff
==============================================================================
--- incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml (original)
+++ incubator/stanbol/trunk/enhancer/engines/metaxa/pom.xml Thu Dec  1 17:21:13 2011
@@ -62,6 +62,8 @@
             </Embed-Dependency>
             <Embed-Transitive>true</Embed-Transitive>
             <Import-Package>
+              !org.apache.log.*,
+              !org.apache.avalon.*,
               !com.jacob.*,
               !jcifs.*,
               !org.bibsonomy.*,
@@ -127,17 +129,12 @@
             <exclude>src/test/resources/pdf-res.txt</exclude>
           </excludes>
         </configuration>
-      </plugin>      
+      </plugin>
     </plugins>
   </build>
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.stanbol</groupId>
-      <artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
-    </dependency>
-
-    <dependency>
       <groupId>org.semanticdesktop.aperture</groupId>
       <artifactId>aperture-core</artifactId>
       <scope>compile</scope>
@@ -154,41 +151,50 @@
       <scope>compile</scope>
     </dependency>
     <dependency>
-    	<groupId>mp3agic</groupId>
-    	<artifactId>mp3agic</artifactId>
-    	<version>0.6</version>
+      <groupId>mp3agic</groupId>
+      <artifactId>mp3agic</artifactId>
+      <version>0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-httpclient</groupId>
+      <artifactId>commons-httpclient</artifactId>
     </dependency>
+
     <dependency>
       <groupId>com.ibm.icu</groupId>
       <artifactId>icu4j</artifactId>
-      <scope>compile</scope>
+      <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <scope>compile</scope>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.servicesapi</artifactId>
+      <scope>provided</scope>
     </dependency>
-
     <dependency>
       <groupId>org.apache.felix</groupId>
       <artifactId>org.apache.felix.scr.annotations</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.clerezza</groupId>
       <artifactId>rdf.core</artifactId>
+      <scope>provided</scope>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jcl-over-slf4j</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-jdk14</artifactId>
+      <scope>provided</scope>
     </dependency>
 
     <dependency>