Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Feb 6, 2024
1 parent 76e215c commit 8f1fe36
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ subprojects {
all {
exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
}

Expand All @@ -85,14 +86,16 @@ subprojects {
}

implementation('org.apache.logging.log4j:log4j-core')
implementation('org.apache.logging.log4j:log4j-api')
implementation('org.apache.logging.log4j:log4j-slf4j-impl')
implementation('org.apache.logging.log4j:log4j-jul')
implementation('org.apache.logging.log4j:log4j-web')
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// implementation('org.apache.logging.log4j:log4j-api')
// implementation('org.apache.logging.log4j:log4j-slf4j-impl')
// implementation('org.apache.logging.log4j:log4j-jul')
// implementation('org.apache.logging.log4j:log4j-web')
implementation "org.apache.commons:commons-lang3:${versions.revCommonsLang}"

compileOnly "org.projectlombok:lombok:${versions.revLombok}"

annotationProcessor "org.projectlombok:lombok:${versions.revLombok}"
implementation "org.apache.commons:commons-lang3:${versions.revCommonsLang}"
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.springframework.boot:spring-boot-starter-log4j2')
Expand All @@ -102,7 +105,7 @@ subprojects {
}

allprojects {
configurations.all {
configurations.configureEach {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'com.fasterxml.jackson.core') {
details.useVersion '2.15.2'
Expand Down

0 comments on commit 8f1fe36

Please sign in to comment.