diff --git a/example-projects/android-app/build.gradle b/example-projects/android-app/build.gradle index 5924c44..2ccde48 100644 --- a/example-projects/android-app/build.gradle +++ b/example-projects/android-app/build.gradle @@ -36,7 +36,7 @@ dependencies { testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' testJavaagent 'org.mockito:mockito-core:5.23.0' //region JUnit 6 - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter-api' testImplementation 'org.junit.jupiter:junit-jupiter-params' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' @@ -46,6 +46,6 @@ dependencies { androidTestImplementation 'org.mockito:mockito-android:5.23.0' androidTestImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' //region JUnit 6 - androidTestImplementation platform('org.junit:junit-bom:6.0.3') + androidTestImplementation platform('org.junit:junit-bom:6.1.0') androidTestImplementation 'org.junit.jupiter:junit-jupiter-api' //endregion } diff --git a/example-projects/android-library/build.gradle b/example-projects/android-library/build.gradle index 55edd03..d99ff7a 100644 --- a/example-projects/android-library/build.gradle +++ b/example-projects/android-library/build.gradle @@ -33,7 +33,7 @@ dependencies { testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' testJavaagent 'org.mockito:mockito-core:5.23.0' //region JUnit 6 - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter-api' testImplementation 'org.junit.jupiter:junit-jupiter-params' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' @@ -43,6 +43,6 @@ dependencies { androidTestImplementation 'org.mockito:mockito-android:5.23.0' androidTestImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' //region JUnit 6 - androidTestImplementation platform('org.junit:junit-bom:6.0.3') + androidTestImplementation platform('org.junit:junit-bom:6.1.0') androidTestImplementation 'org.junit.jupiter:junit-jupiter-api' //endregion } diff --git a/example-projects/java-app/build.gradle b/example-projects/java-app/build.gradle index 66c20d7..a7cea96 100644 --- a/example-projects/java-app/build.gradle +++ b/example-projects/java-app/build.gradle @@ -20,7 +20,7 @@ dependencies { testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' testJavaagent 'org.mockito:mockito-core:5.23.0' //region JUnit 6 - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter-params' testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' diff --git a/example-projects/java-library/build.gradle b/example-projects/java-library/build.gradle index 8102a7a..505edce 100644 --- a/example-projects/java-library/build.gradle +++ b/example-projects/java-library/build.gradle @@ -18,7 +18,7 @@ dependencies { testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' testJavaagent 'org.mockito:mockito-core:5.23.0' //region JUnit 6 - testImplementation platform('org.junit:junit-bom:6.0.3') + testImplementation platform('org.junit:junit-bom:6.1.0') testImplementation 'org.junit.jupiter:junit-jupiter-params' testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher'