diff --git a/checker/build.gradle b/checker/build.gradle index 0b8b4b9..d1bebc3 100644 --- a/checker/build.gradle +++ b/checker/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation project(':framework') implementation "io.github.eisop:checker-qual:${versions.eisopVersion}" - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation project(':test-utils') diff --git a/framework/build.gradle b/framework/build.gradle index c0e0f75..4b72085 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -3,7 +3,7 @@ plugins { } dependencies { - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.junit.jupiter:junit-jupiter' } diff --git a/test-utils/build.gradle b/test-utils/build.gradle index 32bc2c3..8f72f2d 100644 --- a/test-utils/build.gradle +++ b/test-utils/build.gradle @@ -4,6 +4,6 @@ plugins { dependencies { api project(':framework') - api platform('org.junit:junit-bom:6.0.3') + api platform('org.junit:junit-bom:6.1.0') api 'org.junit.jupiter:junit-jupiter' }