Files
openide/libraries/junit5/BUILD.bazel
Vladimir Krivosheev 17916c90f8 libraries -> lib, resources, opt-in, test deps
GitOrigin-RevId: db66ee95dcb0f0553b40c9cc56cd6afed8634cdd
2024-11-27 13:53:42 +00:00

20 lines
516 B
Python

### auto-generated section `build intellij.libraries.junit5` start
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_jvm//:jvm.bzl", "jvm_resources")
jvm_resources(
name = "junit5_resources",
files = glob(["resources/**/*"]),
strip_prefix = "resources"
)
java_library(
name = "junit5",
visibility = ["//visibility:public"],
exports = ["@lib//:junit5"],
runtime_deps = [
":junit5_resources",
"@lib//:junit5",
]
)
### auto-generated section `build intellij.libraries.junit5` end