-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
58 lines (52 loc) · 2.16 KB
/
Copy pathMODULE.bazel
File metadata and controls
58 lines (52 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
module(name = "tink_java_hcvault", version = "0.0.0")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "rules_java", version = "8.16.1")
bazel_dep(name = "rules_jvm_external", version = "7.0")
bazel_dep(name = "rules_shell", version = "0.8.0")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_android", version = "0.7.3", repo_name = "build_bazel_rules_android")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "tink_java")
archive_override(
module_name = "tink_java",
integrity = "sha256-uzzV/1cCE8/49oIDaM2WVgEqcjbURhF99oJTiJ5FuOg=",
strip_prefix = "tink-java-1.23.0",
urls = ["https://github.com/tink-crypto/tink-java/archive/refs/tags/v1.23.0.tar.gz"],
)
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
artifacts = [
# go/keep-sorted start
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.36.0",
"com.google.guava:guava:33.3.1-jre",
"com.google.truth:truth:1.4.4",
"io.github.jopenlibs:vault-java-driver:5.4.0",
"junit:junit:4.13.2",
"org.ow2.asm:asm-commons:9.7.1",
"org.ow2.asm:asm:9.7.1",
"org.pantsbuild:jarjar:1.7.2",
# go/keep-sorted end
],
repositories = [
"https://maven.google.com",
"https://repo1.maven.org/maven2",
],
known_contributing_modules = ["bazel_worker_java", "protobuf", "tink_java", "tink_java_hcvault"],
)
use_repo(maven, "maven")