Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Manoel Campos <manoelcampos@gmail.com>
  • Loading branch information
manoelcampos committed May 5, 2023
1 parent efa7114 commit 520b2ce
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions examples/spring-app-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
implementation project(':spring-dotenv')
implementation platform('org.springframework:spring-framework-bom:5.3.24')
implementation 'org.springframework:spring-context'
implementation 'org.slf4j:slf4j-api:2.0.3'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.slf4j:slf4j-api:2.0.7'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.20.0'
}
6 changes: 3 additions & 3 deletions examples/spring-jakarta-webapp-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
implementation project(':spring-dotenv')
implementation platform('org.springframework:spring-framework-bom:5.3.24')
implementation 'org.springframework:spring-webmvc'
implementation 'org.slf4j:slf4j-api:2.0.3'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.slf4j:slf4j-api:2.0.7'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.20.0'
}
8 changes: 4 additions & 4 deletions examples/spring-javaee-webapp-example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.gretty' version '3.1.0'
id 'org.gretty' version '4.0.3'
}

sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -18,7 +18,7 @@ dependencies {
implementation project(':spring-dotenv')
implementation platform('org.springframework:spring-framework-bom:5.3.24')
implementation 'org.springframework:spring-webmvc'
implementation 'org.slf4j:slf4j-api:2.0.3'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.slf4j:slf4j-api:2.0.7'
runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0'
runtimeOnly 'org.apache.logging.log4j:log4j-core:2.20.0'
}
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ dependencies {
compileOnly "org.springframework:spring-context:$springVersion"

testImplementation "org.springframework:spring-core:$springVersion"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
testImplementation 'org.mockito:mockito-core:4.8.0'
testImplementation 'org.assertj:assertj-core:3.23.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
testImplementation 'org.mockito:mockito-core:5.3.1'
testImplementation 'org.assertj:assertj-core:3.24.2'
}

test {
Expand Down

0 comments on commit 520b2ce

Please sign in to comment.