Skip to content

Commit

Permalink
Add missing java loads (#4)
Browse files Browse the repository at this point in the history
* Add missing java loads

* Load from java_library.bzl

* Update bazel version to 7.3.2

* Use bazel 7.4.0

* Use rules_java 7.12.2
  • Loading branch information
ted-xie authored Oct 28, 2024
1 parent bb606b0 commit 683e1fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.3.1
7.4.0
1 change: 1 addition & 0 deletions java/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module(
bazel_dep(name = "bazel_worker_api", version = "0.0.1")
bazel_dep(name = "rules_jvm_external", version = "6.2")
bazel_dep(name = "protobuf", version = "27.2")
bazel_dep(name = "rules_java", version = "7.12.2")

maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package(default_visibility = ["//visibility:public"])

load("@rules_java//java:java_library.bzl", "java_library")

java_library(
name = "work_request_handlers",
srcs = [
Expand Down

0 comments on commit 683e1fc

Please sign in to comment.