-
Notifications
You must be signed in to change notification settings - Fork 4
/
BUILD
35 lines (31 loc) · 793 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package(default_visibility = ["//visibility:public"])
filegroup(
name = "nori_runner_srcs",
srcs = ["NoriRunner.java"],
)
java_binary(
name = "nori_runner",
srcs = [":nori_runner_srcs"],
main_class = "NoriRunner",
deps = [
"@maven//:org_apache_lucene_lucene_analyzers_nori",
"@maven//:org_apache_lucene_lucene_core",
],
)
py_binary(
name = "nori_clone_runner",
srcs = ["nori_clone_runner.py"],
data = ["//dictionary:legacy_dictionary"],
imports = ["../../nori/python"],
deps = ["//nori/python/nori:nori_py"],
)
sh_binary(
name = "compare_outputs",
srcs = ["compare_outputs.sh"],
data = [
"data.txt",
":nori_clone_runner",
":nori_runner",
"//dictionary:legacy_dictionary",
],
)