refactor: migrate BUILD files to explicit rules_java imports

Add explicit load statements for java_library and java_test from
@rules_java//java:defs.bzl in:
- javascript/extractor/BUILD.bazel
- javascript/extractor/test/com/semmle/js/extractor/test/BUILD.bazel
This commit is contained in:
Paolo Tranquilli
2026-02-05 17:35:31 +01:00
parent f881d368f0
commit 10a2824b82
2 changed files with 3 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
load("@rules_java//java:defs.bzl", "java_library")
load("@rules_pkg//pkg:mappings.bzl", "pkg_files")
load("@semmle_code//:common.bzl", "codeql_fat_jar", "codeql_java_project")

View File

@@ -1,3 +1,5 @@
load("@rules_java//java:defs.bzl", "java_test")
java_test(
name = "test",
srcs = glob(["**/*.java"]),