forked from grpc-ecosystem/java-grpc-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
65 lines (51 loc) · 1.29 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
http_archive(
name = "org_pubref_rules_protobuf",
strip_prefix = "rules_protobuf-0.8.1",
urls = ["https://github.com/pubref/rules_protobuf/archive/v0.8.1.zip"],
)
load("@org_pubref_rules_protobuf//java:rules.bzl", "java_proto_repositories")
java_proto_repositories()
maven_jar(
name = "io_grpc_grpc_benchmarks",
artifact = "io.grpc:grpc-benchmarks:1.11.0",
)
maven_jar(
name = "io_grpc_grpc_okhttp",
artifact = "io.grpc:grpc-okhttp:1.11.0",
)
maven_jar(
name = "grpc_testing_artifact",
artifact = "io.grpc:grpc-testing:1.11.0",
)
maven_jar(
name = "guava_artifact",
artifact = "com.google.guava:guava:21.0",
)
maven_jar(
name = "junit_artifact",
artifact = "junit:junit:4.10",
)
maven_jar(
name = "netty_artifact",
artifact = "io.netty:netty-all:4.1.24.Final",
)
maven_jar(
name = "protobuf_java_artifact",
artifact = "com.google.protobuf:protobuf-java:3.5.1"
)
maven_jar(
name = "protobuf_java_util_artifact",
artifact = "com.google.protobuf:protobuf-java-util:3.5.1",
)
maven_jar(
name = "mockito_artifact",
artifact = "org.mockito:mockito-all:1.10.19",
)
maven_jar(
name = "prometheus_client_artifact",
artifact = "io.prometheus:simpleclient:0.3.0",
)
maven_jar(
name = "truth_artifact",
artifact = "com.google.truth:truth:0.28",
)