Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: junit-team/junit5-samples
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: junit-team/junit5-samples
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: r5.12.0-RC2
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 15 files changed
  • 1 contributor

Commits on Feb 12, 2025

  1. Use 5.12.0-RC2

    junit-builds committed Feb 12, 2025
    Copy the full SHA
    d5ad402 View commit details
2 changes: 1 addition & 1 deletion junit5-jupiter-extensions/build.gradle
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
}

dependencies {
api(platform("org.junit:junit-bom:5.11.4"))
api(platform("org.junit:junit-bom:5.12.0-RC2"))
api("org.junit.jupiter:junit-jupiter-api") {
because 'building extensions in "main" using JUnit Jupiter API'
}
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-ant/build.sh
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ set -e
#
# Set constants.
#
junit_platform_version='1.11.4'
junit_platform_version='1.12.0-RC2'
ant_version='1.10.13'
ant_folder="apache-ant-${ant_version}"
ant_archive="${ant_folder}-bin.tar.gz"
4 changes: 2 additions & 2 deletions junit5-jupiter-starter-bazel/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
JUNIT_JUPITER_VERSION = "5.11.4"
JUNIT_JUPITER_VERSION = "5.12.0-RC2"

JUNIT_PLATFORM_VERSION = "1.11.4"
JUNIT_PLATFORM_VERSION = "1.12.0-RC2"

bazel_dep(name = "rules_jvm_external", version = "6.7")
bazel_dep(name = "contrib_rules_jvm", version = "0.28.0")
Loading