You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by co...@apache.org on 2011/02/17 16:14:51 UTC

svn commit: r1071639 - /incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml

Author: concelvio
Date: Thu Feb 17 15:14:51 2011
New Revision: 1071639

URL: http://svn.apache.org/viewvc?rev=1071639&view=rev
Log:
STANBOL-99
1) Has been excluded the library slf4j-log4j12 which is given as "provider" with a version 1.5.6. This gives conflict during the test with the version 1.5.2 of slf4j-api.
2) Has been added as test library slf4j-simple 1.5.2
Issue #STANBOL-99 - KReS Semion Refactorer Test Fails

Modified:
    incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml

Modified: incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml?rev=1071639&r1=1071638&r2=1071639&view=diff
==============================================================================
--- incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml (original)
+++ incubator/stanbol/trunk/kres/eu.iksproject.kres.semion.refactorer/pom.xml Thu Feb 17 15:14:51 2011
@@ -115,6 +115,12 @@
       <artifactId>jena</artifactId>
       <version>2.6.2</version>
       <scope>provided</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>mysql</groupId>
@@ -233,6 +239,12 @@
                             </exclusion>
                        </exclusions>
 		</dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>1.5.2</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>