-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMODULE.bazel
More file actions
69 lines (62 loc) · 2.69 KB
/
Copy pathMODULE.bazel
File metadata and controls
69 lines (62 loc) · 2.69 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
59
60
61
62
63
64
65
66
67
68
69
# 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_awskms", version = "2.1.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 = "6.8")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_shell", version = "0.8.0")
bazel_dep(name = "rules_android", version = "0.6.6", repo_name = "build_bazel_rules_android")
bazel_dep(name = "platforms", version = "1.0.0")
_TINK_JAVA_VERSION = "1.21.0"
bazel_dep(name = "tink_java", dev_dependency = True)
archive_override(
module_name = "tink_java",
integrity = "sha256-3cJVMyGLIAsKjxVAEVDBv+eU2moySVy733sgnQYXAk0=",
strip_prefix = "tink-java-%s" % _TINK_JAVA_VERSION,
urls = ["https://github.com/tink-crypto/tink-java/archive/refs/tags/v%s.tar.gz" % _TINK_JAVA_VERSION],
)
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
artifacts = [
# go/keep-sorted start
"com.google.auto.service:auto-service-annotations:1.1.1",
"com.google.auto.service:auto-service:1.1.1",
"com.google.auto:auto-common:1.2.2",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.crypto.tink:tink:%s" % _TINK_JAVA_VERSION,
"com.google.errorprone:error_prone_annotations:2.36.0",
"com.google.guava:guava:33.3.1-jre",
"com.google.truth:truth:1.4.4",
"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",
"software.amazon.awssdk:auth:2.54.3",
"software.amazon.awssdk:kms:2.54.3",
"software.amazon.awssdk:profiles:2.54.3",
"software.amazon.awssdk:regions:2.54.3",
"software.amazon.awssdk:sdk-core:2.54.3",
"software.amazon.awssdk:utils:2.54.3",
# 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_awskms"],
)
use_repo(maven, "maven")