diff --git a/checker/build.gradle b/checker/build.gradle index 353b26c..7e128dd 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.2') + testImplementation platform('org.junit:junit-bom:6.0.3') 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 4bb16aa..c0e0f75 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -3,7 +3,7 @@ plugins { } dependencies { - testImplementation platform('org.junit:junit-bom:6.0.2') + testImplementation platform('org.junit:junit-bom:6.0.3') 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 5c5d28c..32bc2c3 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.2') + api platform('org.junit:junit-bom:6.0.3') api 'org.junit.jupiter:junit-jupiter' }