forked from google/jsinterop-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
71 lines (58 loc) · 1.64 KB
/
WORKSPACE
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
workspace(name = "com_google_jsinterop_generator")
maven_server(
name = "sonatype_snapshot",
url = "https://oss.sonatype.org/content/repositories/snapshots",
)
maven_jar(
name = "jsr305",
artifact = "com.google.code.findbugs:jsr305:3.0.1",
)
maven_jar(
name = "guava",
artifact = "com.google.guava:guava:21.0",
)
maven_jar(
name = "args4j",
artifact = "args4j:args4j:2.33",
)
maven_jar(
name = "auto_value",
artifact = "com.google.auto.value:auto-value:1.4",
)
maven_jar(
name = "jscomp",
artifact = "com.google.javascript:closure-compiler:1.0-SNAPSHOT",
server = "sonatype_snapshot",
)
maven_jar(
name = "jsinterop_annotations",
artifact = "com.google.jsinterop:jsinterop-annotations:1.0.2",
)
maven_jar(
name = "error_prone",
artifact = "com.google.errorprone:error_prone_annotations:2.0.19",
)
new_http_archive(
name="com_google_closure_compiler",
url="https://github.com/google/closure-compiler/archive/v20170409.tar.gz",
build_file="jscomp.BUILD",
strip_prefix="closure-compiler-20170409"
)
http_archive(
name = "com_google_jsinterop_base",
url = "https://github.com/google/jsinterop-base/archive/master.zip",
strip_prefix="jsinterop-base-master",
)
http_jar(
name = "com_google_google_java_format",
url = "https://github.com/google/google-java-format/releases/download/google-java-format-1.3/google-java-format-1.3-all-deps.jar",
)
# third_party libs used by jsinterop-base
maven_jar(
name = "gwt_dev",
artifact = "com.google.gwt:gwt-dev:2.8.1",
)
http_archive(
name="org_gwtproject_gwt",
url="https://gwt.googlesource.com/gwt/+archive/master.tar.gz",
)