Skip to content

Commit b4c0437

Browse files
authored
Merge branch 'main' into sormuras/maven-4
2 parents fb7aeed + 6f988f1 commit b4c0437

File tree

24 files changed

+42
-64
lines changed

24 files changed

+42
-64
lines changed

.github/workflows/build-all-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
java-version: 21
2020
distribution: temurin
21-
- uses: sbt/setup-sbt@69a46ab4acd4316aa16e68d91a9249a98d7e78d5 # v1.1.8
21+
- uses: sbt/setup-sbt@6c68d2fe8dfbc0a0534d70101baa2e0420e1a506 # v1.1.9
2222
- name: 'Build all samples using JShell'
2323
run: java src/Builder.java
2424
- name: 'Check automation for updating versions'

.github/workflows/nohttp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616
- name: 'Run nohttp'
17-
uses: jbangdev/jbang-action@ad9de817ea5f3612cf6f32d82249bc5443191818 # v0.126.1
17+
uses: jbangdev/jbang-action@acb7292ee1e73bf778db2bbc2b52620627a635a5 # v0.126.2
1818
with:
1919
script: io.spring.nohttp:nohttp-cli:0.0.9
2020
scriptargs: "-D=\\.git -D=build -D=target -D=apache-ant-.+ -F=maven-wrapper\\.properties -F=mvnw\\.cmd -Fmvnw -FMODULE.bazel.lock"

junit5-jupiter-extensions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
1717
}
1818

1919
dependencies {
20-
api(platform("org.junit:junit-bom:5.12.2"))
20+
api(platform("org.junit:junit-bom:5.13.1"))
2121
api("org.junit.jupiter:junit-jupiter-api") {
2222
because 'building extensions in "main" using JUnit Jupiter API'
2323
}

junit5-jupiter-extensions/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionSha256Sum=7197a12f450794931532469d4ff21a59ea2c1cd59a3ec3f89c035c3c420a6999
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

junit5-jupiter-starter-ant/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
#
55
# Set constants.
66
#
7-
junit_platform_version='1.12.2'
7+
junit_platform_version='1.13.1'
88
ant_version='1.10.13'
99
ant_folder="apache-ant-${ant_version}"
1010
ant_archive="${ant_folder}-bin.tar.gz"

junit5-jupiter-starter-bazel/MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
JUNIT_JUPITER_VERSION = "5.12.2"
1+
JUNIT_JUPITER_VERSION = "5.13.1"
22

3-
JUNIT_PLATFORM_VERSION = "1.12.2"
3+
JUNIT_PLATFORM_VERSION = "1.13.1"
44

55
bazel_dep(name = "rules_jvm_external", version = "6.7")
6-
bazel_dep(name = "contrib_rules_jvm", version = "0.28.0")
6+
bazel_dep(name = "contrib_rules_jvm", version = "0.29.0")
77

88
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
99

junit5-jupiter-starter-bazel/MODULE.bazel.lock

Lines changed: 5 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

junit5-jupiter-starter-gradle-groovy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010

1111
dependencies {
1212
implementation(localGroovy())
13-
testImplementation(platform('org.junit:junit-bom:5.12.2'))
13+
testImplementation(platform('org.junit:junit-bom:5.13.1'))
1414
testImplementation('org.junit.jupiter:junit-jupiter')
1515
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1616
}

junit5-jupiter-starter-gradle-groovy/gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=845952a9d6afa783db70bb3b0effaae45ae5542ca2bb7929619e8af49cb634cf
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionSha256Sum=7197a12f450794931532469d4ff21a59ea2c1cd59a3ec3f89c035c3c420a6999
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

junit5-jupiter-starter-gradle-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation(platform("org.junit:junit-bom:5.12.2"))
13+
testImplementation(platform("org.junit:junit-bom:5.13.1"))
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1616
}

0 commit comments

Comments
 (0)