Skip to content

Commit

Permalink
Merge pull request #4 from EMCECS/downgrade-logback
Browse files Browse the repository at this point in the history
Downgraded logback due to compatibility issues with springboot
  • Loading branch information
YogeshSampalDell authored Feb 27, 2024
2 parents 55f43eb + f36eb41 commit 547e5cd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ dependencies {
implementation(group: 'org.glassfish.jersey.media', name: 'jersey-media-jaxb', version: '2.39')
implementation(group: 'com.google.guava', name: 'guava', version: '31.1.0.jre-redhat-00005')
implementation(group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36')
implementation(group: 'ch.qos.logback', name: 'logback-core', version: '1.4.14')
implementation(group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14')
// Upgrading logback to 1.3.x & above has compatibility issues with spring-boot & will need spring-boot to be upgraded to 3.x
// https://github.com/spring-projects/spring-boot/issues/34708#issuecomment-1478581325
implementation(group: 'ch.qos.logback', name: 'logback-core', version: '1.2.11')
implementation(group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11')
implementation(group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.20.0')
implementation(group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: '2.20.0')
implementation(group: 'com.sun.jersey.contribs', name: 'jersey-apache-client4', version: '1.19.4')
Expand Down

0 comments on commit 547e5cd

Please sign in to comment.