Java/Kotlin: prepare for internal bazel packaging

This commit is contained in:
Paolo Tranquilli
2024-04-09 13:27:27 +02:00
parent b71ffc658b
commit 4a4bd16eab
3 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
pkg_files(
name = "downgrades",
srcs = glob(
["**"],
exclude = ["BUILD.bazel"],
),
prefix = "downgrades",
strip_prefix = strip_prefix.from_pkg(),
visibility = ["//visibility:public"],
)