kimminsung / log4jdbc-remix

Automatically exported from code.google.com/p/log4jdbc-remix
0 stars 0 forks source link

slf4j-log4j12 set as maven compile dependency #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Fix is in SVN: Will be in next release.

Original comment by tim.azzo...@gmail.com on 7 Nov 2011 at 4:18

GoogleCodeExporter commented 9 years ago
fixed in 0.2.5

Original comment by tim.azzo...@gmail.com on 7 Nov 2011 at 10:52