-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWORKSPACE
73 lines (60 loc) · 1.75 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
72
73
maven_jar(
name = "com_google_guava_guava21",
artifact = "com.google.guava:guava:jar:21.0",
)
maven_jar(
name = "com_google_errorprone_javac",
artifact = "com.google.errorprone:javac:1.8.0-u20",
sha1 = "b23b2b0e3f79e3f737496a9eca5bab65cdca791d",
)
maven_jar(
name = "com_google_code_gson_gson",
artifact = "com.google.code.gson:gson:2.8.2",
sha1 = "3edcfe49d2c6053a70a2a47e4e1c2f94998a49cf",
)
maven_jar(
name = "com_google_code_findbugs_jsr305",
artifact = "com.google.code.findbugs:jsr305:3.0.2",
sha1 = "25ea2e8b0c338a877313bd4672d3fe056ea78f0d",
)
####################
# For tests
maven_jar(
name = "junit_junit",
artifact = "junit:junit:4.12",
sha1 = "2973d150c0dc1fefe998f834810d68f278ea58ec",
)
maven_jar(
name = "com_google_truth_truth",
artifact = "com.google.truth:truth:0.30",
sha1 = "9d591b5a66eda81f0b88cf1c748ab8853d99b18b",
)
maven_jar(
name = "com_google_truth_extensions_truth_java8_extension",
artifact = "com.google.truth.extensions:truth-java8-extension:0.30",
)
maven_jar(
name = "org_mockito_mockito_core",
artifact = "org.mockito:mockito-core:2.4.2",
sha1 = "368a656183eac6b47daa37de39ce77b080dac412",
)
maven_jar(
name = "net_bytebutty_byte_butty",
artifact = "net.bytebuddy:byte-buddy:1.5.5",
)
maven_jar(
name = "org_objenesis_objenesis",
artifact = "org.objenesis:objenesis:2.4",
)
maven_jar(
name = "com_google_auto_value_auto_value",
artifact = "com.google.auto.value:auto-value:1.6.2",
)
maven_jar(
name = "com_google_auto_value_auto_value_annotations",
artifact = "com.google.auto.value:auto-value-annotations:1.6.2",
)
maven_jar(
name = "org_hamcrest_hamcrest_core_1_3",
artifact = "org.hamcrest:hamcrest-core:1.3",
)