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 12:59:34 UTC

svn commit: r1071589 - /incubator/stanbol/trunk/kres/eu.iksproject.kres.reasoners/pom.xml

Author: concelvio
Date: Thu Feb 17 11:59:34 2011
New Revision: 1071589

URL: http://svn.apache.org/viewvc?rev=1071589&view=rev
Log:
STANBOL-35
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-35 - Failing tests in KReS Reasoners

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

Modified: incubator/stanbol/trunk/kres/eu.iksproject.kres.reasoners/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/eu.iksproject.kres.reasoners/pom.xml?rev=1071589&r1=1071588&r2=1071589&view=diff
==============================================================================
--- incubator/stanbol/trunk/kres/eu.iksproject.kres.reasoners/pom.xml (original)
+++ incubator/stanbol/trunk/kres/eu.iksproject.kres.reasoners/pom.xml Thu Feb 17 11:59:34 2011
@@ -53,6 +53,12 @@
 			<groupId>eu.iksproject</groupId>
 			<artifactId>eu.iksproject.kres.shared.transformation</artifactId>
 			<version>${kres-version}</version>
+		 <exclusions>
+		  <exclusion>
+		   <artifactId>slf4j-log4j12</artifactId>
+		   <groupId>org.slf4j</groupId>
+		  </exclusion>
+		 </exclusions>
 		</dependency>
 		<dependency>
 			<groupId>owl-link</groupId>
@@ -87,7 +93,12 @@
                             </exclusion>
                        </exclusions>
 		</dependency>
-
+	 <dependency>
+	  <groupId>org.slf4j</groupId>
+	  <artifactId>slf4j-simple</artifactId>
+	  <version>1.5.2</version>
+	  <scope>test</scope>
+	 </dependency>
 	</dependencies>
 	<build>
 		<plugins>