Skip to content

Commit

Permalink
use log4j -> slf4j adapter to get rid of log4j dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Duda committed Dec 14, 2021
1 parent e00e426 commit f2df9b7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ dependencies {

/* used to hide warnings about missing slf. */
implementation('org.slf4j:slf4j-api:1.7.32')
implementation('org.slf4j:slf4j-simple:1.7.32')
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
implementation('org.slf4j:slf4j-jdk14:1.7.32')
implementation('org.apache.logging.log4j:log4j-to-slf4j:2.16.0')
//implementation('org.slf4j:slf4j-simple:1.7.32')

testImplementation 'io.vertx:vertx-unit:4.2.1'
testImplementation 'junit:junit:4.13.2'
Expand Down

0 comments on commit f2df9b7

Please sign in to comment.