Skip to content

Commit 9ba32a0

Browse files
committed
Add bazel-based build for the Javascript extractor.
1 parent de85f2b commit 9ba32a0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

javascript/extractor/BUILD.bazel

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
load("@//:common.bzl", "codeql_java_project")
2+
3+
codeql_java_project(
4+
name = "extractor",
5+
deps = [
6+
"@//extractor",
7+
"@//resources/lib/java:commons-compress",
8+
"@//resources/lib/java:gson",
9+
"@//resources/lib/java:jericho-html",
10+
"@//resources/lib/java:slf4j-api",
11+
"@//resources/lib/java:snakeyaml",
12+
"@//resources/lib/java/DO_NOT_DISTRIBUTE:junit",
13+
"@//third_party:jackson",
14+
"@//third_party:logback",
15+
"@//util-java7",
16+
"@//util-java8",
17+
],
18+
)

0 commit comments

Comments
 (0)