Skip to content

Commit

Permalink
rules_java
Browse files Browse the repository at this point in the history
  • Loading branch information
tinder-kaijing committed Jun 10, 2024
1 parent 8a8febe commit 735765d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//bazel_support:repositories.bzl", "gitquery_dependencies")
load("//bazel_support:constants.bzl", "MAVEN_ARTIFACTS")

Expand All @@ -18,3 +19,14 @@ maven_install(
"https://repo1.maven.org/maven2",
],
)

http_archive(
name = "rules_java",
urls = [
"https://github.com/bazelbuild/rules_java/releases/download/7.6.1/rules_java-7.6.1.tar.gz",
],
sha256 = "f8ae9ed3887df02f40de9f4f7ac3873e6dd7a471f9cddf63952538b94b59aeb3",
)
load("@rules_java//java:repositories.bzl", "rules_java_dependencies", "rules_java_toolchains")
rules_java_dependencies()
rules_java_toolchains()

0 comments on commit 735765d

Please sign in to comment.