Files
openide/libraries/testng/BUILD.bazel
Vladimir Krivosheev 0bc1cf1557 update bazel files
GitOrigin-RevId: 7320d3eff3aba093692ce66839c720ece6d7c4db
2024-12-30 11:28:24 +00:00

20 lines
520 B
Python

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