Skip to content

Commit

Permalink
chore: Bump deps (#7070)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasternak authored Nov 28, 2024
1 parent 5a2b278 commit d304fbc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions examples/java/greetings_project/WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")

jvm_maven_import_external(
name = "junit",
Expand All @@ -16,9 +16,9 @@ load("//:junit5_deps.bzl", "instantiate_junit5_deps")
instantiate_junit5_deps()

# `contrib_rules_jvm` gives us access to `java_test_suite` and the JUnit5 runner.
CONTRIB_RULES_JVM_VERSION = "0.9.0"
CONTRIB_RULES_JVM_VERSION = "0.27.0"

CONTRIB_RULES_JVM_SHA = "548f0583192ff79c317789b03b882a7be9b1325eb5d3da5d7fdcc4b7ca69d543"
CONTRIB_RULES_JVM_SHA = "e6cd8f54b7491fb3caea1e78c2c740b88c73c7a43150ec8a826ae347cc332fc7"

http_archive(
name = "contrib_rules_jvm",
Expand Down
22 changes: 11 additions & 11 deletions examples/java/greetings_project/junit5_deps.bzl
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")

JUNIT_JUPITER_VERSION = "5.9.2"
JUNIT_JUPITER_VERSION = "5.11.3"

JUNIT_PLATFORM_VERSION = "1.9.2"
JUNIT_PLATFORM_VERSION = "1.11.3"

_JUNIT5_DEPS_TO_FETCH = [
{
"name": "junit_platform_launcher",
"coords": "org.junit.platform:junit-platform-launcher:%s" % JUNIT_PLATFORM_VERSION,
"artifact_sha256": "eef139eb09c98e9cdd358b6ce4c6cdd59b30c6a88096e369c33ba96e67edf0e4",
"artifact_sha256": "b4727459201b0011beb0742bd807421a1fc8426b116193031ed87825bc2d4f04",
},
{
"name": "junit_platform_reporting",
"coords": "org.junit.platform:junit-platform-reporting:%s" % JUNIT_PLATFORM_VERSION,
"artifact_sha256": "d6788db1c941c1247e07d8104f57c3f06175cadfd43060a792493fe9195671db",
"artifact_sha256": "b8e19dbebcae7d1ff30b9d767047fbf3694027c33dfa423b371693b7f6679ed1",
},
{
"name": "junit_platform_commons",
"coords": "org.junit.platform:junit-platform-commons:%s" % JUNIT_PLATFORM_VERSION,
"artifact_sha256": "624a3d745ef1d28e955a6a67af8edba0fdfc5c9bad680a73f67a70bb950a683d",
"artifact_sha256": "be262964b0b6b48de977c61d4f931df8cf61e80e750cc3f3a0a39cdd21c1008c",
},
{
"name": "junit_platform_engine",
"coords": "org.junit.platform:junit-platform-engine:%s" % JUNIT_PLATFORM_VERSION,
"artifact_sha256": "25f23dc535a091e9dc80c008faf29dcb92be902e6911f77a736fbaf019908367",
"artifact_sha256": "0043f72f611664735da8dc9a308bf12ecd2236b05339351c4741edb4d8fab0da",
},
{
"name": "junit_jupiter_api",
"coords": "org.junit.jupiter:junit-jupiter-api:%s" % JUNIT_JUPITER_VERSION,
"artifact_sha256": "f767a170f97127b0ad3582bf3358eabbbbe981d9f96411853e629d9276926fd5",
"artifact_sha256": "5d8147a60f49453973e250ed68701b7ff055964fe2462fc2cb1ec1d6d44889ba",
},
{
"name": "junit_jupiter_params",
"coords": "org.junit.jupiter:junit-jupiter-params:%s" % JUNIT_JUPITER_VERSION,
"artifact_sha256": "bde91900a5ce5d6663bb44bc708494b35daefcd73e1bb7afa61a4affe38ea97d",
"artifact_sha256": "0f798ebec744c4e6605fd4f2072f41a8e989e2d469e21db5aa67cf799c0b51ec",
},
{
"name": "junit_jupiter_engine",
"coords": "org.junit.jupiter:junit-jupiter-engine:%s" % JUNIT_JUPITER_VERSION,
"artifact_sha256": "74cfc49388f760413ff348ca2c9ab39527484b57deecd157f2275a5f8a5fe971",
"artifact_sha256": "e62420c99f7c0d59a2159a2ef63e61877e9c80bd722c03ca8bf3bdcea050a589",
},
{
"name": "opentest4j",
"coords": "org.opentest4j:opentest4j:1.2.0",
"artifact_sha256": "58812de60898d976fb81ef3b62da05c6604c18fd4a249f5044282479fc286af2",
"coords": "org.opentest4j:opentest4j:1.3.0",
"artifact_sha256": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b",
},
]

Expand Down

0 comments on commit d304fbc

Please sign in to comment.