Skip to content

Commit

Permalink
[DROOLS-1216] exclude commons-logging and use jcl-over-slf4j instead (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
psiroky authored and csadilek committed Jun 27, 2016
1 parent 13a5b82 commit 9db807b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions drools-wb-jcr2vfs-migration/drools-wb-jcr2vfs-export/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,25 @@
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>${version.org.apache.pdfbox}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Use newer SLF4J and Logback with better support for logging exceptions with stacktraces. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.org.slf4j}</version>
</dependency>
<!-- Replacement for the above excluded 'commons-logging:commons-logging' -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${version.org.slf4j}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down Expand Up @@ -119,6 +131,12 @@
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<!-- Replacement for the above excluded 'commons-logging:commons-logging' -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>commons-cli</groupId>
Expand Down Expand Up @@ -167,6 +185,10 @@
<groupId>org.drools</groupId>
<artifactId>guvnor-webapp-core</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
Expand Down

0 comments on commit 9db807b

Please sign in to comment.