From e73464647955bf481a17201d74cc9de3562c660a Mon Sep 17 00:00:00 2001 From: Samuel Abramov Date: Mon, 4 Nov 2024 22:57:04 +0100 Subject: [PATCH] chore(#171):Update Gradle to 8.10.2 --- example/build.gradle | 10 +++++----- lib/build.gradle | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/example/build.gradle b/example/build.gradle index b27f400..785afbf 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -19,12 +19,12 @@ repositories { dependencies { implementation project(path: ':lib') - implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta1' - implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta1' - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta1' + implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta2' + implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta2' + implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta2' - testImplementation platform('org.junit:junit-bom:5.10.2') - testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2' + testImplementation platform('org.junit:junit-bom:5.11.3') + testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3' } test { diff --git a/lib/build.gradle b/lib/build.gradle index 05812df..fd27ff7 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -38,15 +38,15 @@ dependencies { // Other dependencies implementation 'com.opencsv:opencsv:5.9' - implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta1' - implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta1' - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta1' + implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta2' + implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta2' + implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta2' // Test dependencies - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2' - testImplementation 'org.mockito:mockito-core:5.10.0' - testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0' - testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3' + testImplementation 'org.mockito:mockito-core:5.11.3' + testImplementation 'org.mockito:mockito-junit-jupiter:5.14.2' + testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3' } tasks.withType(Test) {