Author: concelvio
Date: Thu Feb 17 14:10:00 2011
New Revision: 1071616
URL: http://svn.apache.org/viewvc?rev=1071616&view=rev
Log:
STANBOL-95
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-95 - KReS Manager Test Fails
Modified:
incubator/stanbol/trunk/kres/eu.iksproject.kres.manager/pom.xml
Modified: incubator/stanbol/trunk/kres/eu.iksproject.kres.manager/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/kres/eu.iksproject.kres.manager/pom.xml?rev=1071616&r1=1071615&r2=1071616&view=diff
==============================================================================
--- incubator/stanbol/trunk/kres/eu.iksproject.kres.manager/pom.xml (original)
+++ incubator/stanbol/trunk/kres/eu.iksproject.kres.manager/pom.xml Thu Feb 17
14:10:00 2011
@@ -102,6 +102,12 @@
<artifactId>eu.iksproject.kres.storage</artifactId>
<version>${kres-version}</version>
<scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>slf4j-log4j12</artifactId>
+ <groupId>org.slf4j</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- OSGi deps -->
@@ -151,7 +157,12 @@
</exclusion>
</exclusions>
</dependency>
-
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.5.2</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<repositories />