-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUILD
More file actions
43 lines (36 loc) · 918 Bytes
/
BUILD
File metadata and controls
43 lines (36 loc) · 918 Bytes
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
36
37
38
39
40
package(default_visibility = ["//visibility:public"])
java_library(
name = "lertspeaklib",
srcs = glob(["src/**/*.java", "src/*.java"]),
deps = [
"@duckutil//:duckutil_lib",
"@duckutil//:webserver_lib",
"@maven//:de_sfuhrm_chromecast_java_api_v2",
"@maven//:commons_codec_commons_codec",
"@maven//:net_minidev_json_smart",
"@maven//:org_eclipse_jetty_websocket_websocket_client",
"@maven//:org_eclipse_jetty_jetty_util",
"@maven//:org_eclipse_jetty_websocket_websocket_api",
],
)
java_binary(
name = "LertSpeak",
main_class = "duckutil.lertspeak.LertSpeak",
runtime_deps = [
":lertspeaklib",
],
)
java_binary(
name = "IntSpeak",
main_class = "duckutil.lertspeak.InteractiveSpeak",
runtime_deps = [
":lertspeaklib",
],
)
java_binary(
name = "ApiSpeak",
main_class = "duckutil.lertspeak.ApiSpeak",
runtime_deps = [
":lertspeaklib",
],
)