Merge branch 'stable-3.0' * stable-3.0: Bazel: Add fixes for --incompatible_load_java_rules_from_bzl Bazel: Remove unnecessary 'include =' on java_library src parameter Upgrade bazlets to latest stable-3.0 to build with 3.0.2 API Upgrade bazlets to latest stable-2.16 to build with 2.16.11.1 API Upgrade bazlets to latest stable-2.15 to build with 2.15.16 API Upgrade bazlets to latest stable-2.15 to build with 2.15.15 API Upgrade bazlets to latest stable-3.0 Upgrade bazlets to latest stable-2.16 to build with 2.16.10 API Upgrade bazlets to latest stable-2.16 Upgrade bazlets to latest stable-2.15 Upgrade bazlets to latest stable-2.14 Upgrade bazlets to latest stable-2.15 Upgrade bazlets to latest stable-2.14 Upgrade bazlets to latest stable-2.16 to build with 2.16.9 API Upgrade bazlets to latest stable-2.15 Upgrade bazlets to latest stable-2.14 Upgrade bazlets to latest stable-2.15 to build with 2.15.14 API Change-Id: I194c3f81d1ab42c97c638f22ffd6ea84e90b8e72
diff --git a/BUILD b/BUILD index 230e501..4ae3ed0 100644 --- a/BUILD +++ b/BUILD
@@ -1,3 +1,4 @@ +load("@rules_java//java:defs.bzl", "java_library") load("//tools/bzl:junit.bzl", "junit_tests") load("//tools/bzl:plugin.bzl", "PLUGIN_DEPS", "PLUGIN_TEST_DEPS", "gerrit_plugin") @@ -23,7 +24,7 @@ name = "testutils", testonly = 1, srcs = glob( - include = ["src/test/java/**/*.java"], + ["src/test/java/**/*.java"], exclude = [TEST_SRCS], ), deps = TEST_DEPS,