diff --git a/example/build.gradle b/example/build.gradle index b7e8403..b27f400 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -1,5 +1,6 @@ plugins { id 'java' + id 'com.github.ben-manes.versions' version '0.51.0' } group = 'io.github.samyssmile' @@ -18,12 +19,12 @@ repositories { dependencies { implementation project(path: ':lib') - implementation 'org.apache.logging.log4j:log4j-api:2.20.0' - implementation 'org.apache.logging.log4j:log4j-core:2.20.0' - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0' + 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' - testImplementation platform('org.junit:junit-bom:5.9.1') - testImplementation 'org.junit.jupiter:junit-jupiter' + testImplementation platform('org.junit:junit-bom:5.10.2') + testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2' } test { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1af9e09..a80b22c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/lib/build.gradle b/lib/build.gradle index 10ccfbb..05812df 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -3,6 +3,7 @@ plugins { id 'maven-publish' id 'signing' id "me.champeau.jmh" version "0.7.2" + id 'com.github.ben-manes.versions' version '0.51.0' } group = 'io.github.samyssmile' @@ -36,16 +37,16 @@ dependencies { implementation 'org.openjdk.jmh:jmh-generator-annprocess:1.37' // Other dependencies - implementation 'com.opencsv:opencsv:5.8' - implementation 'org.apache.logging.log4j:log4j-api:2.20.0' - implementation 'org.apache.logging.log4j:log4j-core:2.20.0' - implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0' + 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' // Test dependencies - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0' - testImplementation 'org.mockito:mockito-core:5.7.0' - testImplementation 'org.mockito:mockito-junit-jupiter:5.7.0' - testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0' + 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' } tasks.withType(Test) {