-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
24 lines (22 loc) · 934 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
load("@contrib_rules_jvm//java:defs.bzl", "java_junit5_test")
java_junit5_test(
name = "ExampleTest",
srcs = ["src/test/com/github/bazel_contrib/contrib_rules_jvm/examples/tests_and_lints/ExampleTest.java"],
env_inherit = [
"",
],
shard_count = 10,
test_class = "com.github.bazel_contrib.contrib_rules_jvm.examples.tests_and_lints.ExampleTest",
runtime_deps = [
"@maven//:org_junit_jupiter_junit_jupiter_engine",
"@maven//:org_junit_platform_junit_platform_reporting",
"@maven//:org_junit_platform_junit_platform_suite",
"@maven//:org_junit_platform_junit_platform_suite_api",
],
deps = [
"@maven//:org_junit_jupiter_junit_jupiter_api",
"@maven//:org_junit_jupiter_junit_jupiter_params",
# "@maven//:org_junit_jupiter_junit_platform_launcher",
# "@maven//:org_junit_jupiter_junit_platform_reporting",
],
)