Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Commit

Permalink
update logback & slf4j-api
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlep committed Apr 6, 2018
1 parent e130953 commit d168fc1
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,37 @@
<version>310</version>
</dependency>

<!-- FOR LOGGING: -->

<!-- slf4j api already is pulled by logback below. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.10</version>
</dependency>
<version>1.7.25</version>
</dependency>

<!-- redirect all log4j stuff to slf4j -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.25</version>
</dependency>


<!-- Logback logging via sl4j: -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.1.2</version>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>

<!-- redirect all log4j output to slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.16</version>
</dependency>

<!-- This is for supporting conditions in logback.xml: -->
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>3.0.8</version>
</dependency>
<!-- END FOR LOGGING -->

<!-- Image IO stuff -->
<dependency>
<groupId>com.sun.media</groupId>
Expand Down

0 comments on commit d168fc1

Please sign in to comment.