Author: echatellier Date: 2011-07-01 16:32:57 +0200 (Fri, 01 Jul 2011) New Revision: 1032 Url: http://nuiton.org/repositories/revision/wikitty/1032 Log: Fix test logging Modified: trunk/pom.xml trunk/wikitty-api/pom.xml trunk/wikitty-jdbc/pom.xml trunk/wikitty-lucene/pom.xml trunk/wikitty-solr/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2011-07-01 14:09:02 UTC (rev 1031) +++ trunk/pom.xml 2011-07-01 14:32:57 UTC (rev 1032) @@ -210,6 +210,10 @@ <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> </exclusion> + <exclusion> + <artifactId>jcl-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> </exclusions> </dependency> Modified: trunk/wikitty-api/pom.xml =================================================================== --- trunk/wikitty-api/pom.xml 2011-07-01 14:09:02 UTC (rev 1031) +++ trunk/wikitty-api/pom.xml 2011-07-01 14:32:57 UTC (rev 1032) @@ -82,11 +82,22 @@ <groupId>org.jboss.jbossts</groupId> <artifactId>jbossjta</artifactId> </dependency> + <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </dependency> + <!-- for event serialization --> <dependency> <groupId>com.thoughtworks.xstream</groupId> Modified: trunk/wikitty-jdbc/pom.xml =================================================================== --- trunk/wikitty-jdbc/pom.xml 2011-07-01 14:09:02 UTC (rev 1031) +++ trunk/wikitty-jdbc/pom.xml 2011-07-01 14:32:57 UTC (rev 1032) @@ -89,6 +89,16 @@ <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </dependency> </dependencies> Modified: trunk/wikitty-lucene/pom.xml =================================================================== --- trunk/wikitty-lucene/pom.xml 2011-07-01 14:09:02 UTC (rev 1031) +++ trunk/wikitty-lucene/pom.xml 2011-07-01 14:32:57 UTC (rev 1032) @@ -38,6 +38,16 @@ </dependency> <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </dependency> + + <dependency> <groupId>org.nuiton</groupId> <artifactId>nuiton-utils</artifactId> </dependency> Modified: trunk/wikitty-solr/pom.xml =================================================================== --- trunk/wikitty-solr/pom.xml 2011-07-01 14:09:02 UTC (rev 1031) +++ trunk/wikitty-solr/pom.xml 2011-07-01 14:32:57 UTC (rev 1032) @@ -86,15 +86,26 @@ <artifactId>commons-lang</artifactId> </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + </dependency> + <!-- TEST --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </dependency> </dependencies>