What steps will reproduce the problem?
1. Open pom.xml for version 0.2.4
2. slf4j-log4j12 is listed as a compile dependency
What is the expected output? What do you see instead?
The dependency should be set to a scope of either 'runtime' or 'test' so that
it does not cause an SLF4J conflict for those using other frameworks like
logback. Currently an explict exclusion must be set to remove the dependency.
<dependency>
<groupId>org.lazyluke</groupId>
<artifactId>log4jdbc-remix</artifactId>
<version>0.2.4</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
What version of the product are you using? On what operating system?
0.2.4
Please provide any additional information below.
Original issue reported on code.google.com by emills%e...@gtempaccount.com on 11 Oct 2010 at 6:13
Original issue reported on code.google.com by
emills%e...@gtempaccount.com
on 11 Oct 2010 at 6:13