diff --git a/python-embed-build-common/build.gradle b/python-embed-build-common/build.gradle index 577b068..fde7480 100644 --- a/python-embed-build-common/build.gradle +++ b/python-embed-build-common/build.gradle @@ -47,7 +47,7 @@ repositories { } dependencies { - testImplementation platform('org.junit:junit-bom:6.1.0') + testImplementation platform('org.junit:junit-bom:6.1.3') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/python-embed-gradle-plugin/build.gradle b/python-embed-gradle-plugin/build.gradle index 81843ea..c9b6fcf 100644 --- a/python-embed-gradle-plugin/build.gradle +++ b/python-embed-gradle-plugin/build.gradle @@ -41,7 +41,7 @@ dependencies { implementation gradleApi() implementation "io.github.howtis:python-embed-build-common:${project.findProperty('releaseVersion') ?: '1.0.2'}" - testImplementation platform('org.junit:junit-bom:6.1.0') + testImplementation platform('org.junit:junit-bom:6.1.3') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/python-embed-maven-plugin/build.gradle b/python-embed-maven-plugin/build.gradle index da254c1..88cbf54 100644 --- a/python-embed-maven-plugin/build.gradle +++ b/python-embed-maven-plugin/build.gradle @@ -52,7 +52,7 @@ dependencies { implementation 'org.apache.maven:maven-core:3.9.16' implementation 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.15.2' - testImplementation platform('org.junit:junit-bom:6.1.0') + testImplementation platform('org.junit:junit-bom:6.1.3') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.apache.maven:maven-compat:3.9.16' diff --git a/python-embed-runtime/build.gradle b/python-embed-runtime/build.gradle index defec2b..0455e6f 100644 --- a/python-embed-runtime/build.gradle +++ b/python-embed-runtime/build.gradle @@ -6,12 +6,12 @@ version = project.findProperty('releaseVersion') ?: '1.0.2-SNAPSHOT' dependencies { implementation 'org.msgpack:msgpack-core:0.9.12' - implementation 'org.slf4j:slf4j-api:2.0.18' + implementation 'org.slf4j:slf4j-api:2.0.19' - testImplementation platform('org.junit:junit-bom:6.1.0') + testImplementation platform('org.junit:junit-bom:6.1.3') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - testImplementation 'org.slf4j:slf4j-simple:2.0.18' + testImplementation 'org.slf4j:slf4j-simple:2.0.19' } test {