forked from nus-tic2002-2021/duke
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
27 lines (23 loc) 路 918 Bytes
/
Copy pathWORKSPACE
File metadata and controls
27 lines (23 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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
RULES_JVM_EXTERNAL_TAG = "4.0"
RULES_JVM_EXTERNAL_SHA = "31701ad93dbfe544d597dbe62c9a1fdd76d81d8a9150c2bf1ecf928ecdf97169"
http_archive(
name = "rules_jvm_external",
strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG,
sha256 = RULES_JVM_EXTERNAL_SHA,
url = "https://github.com/bazelbuild/rules_jvm_external/archive/%s.zip" % RULES_JVM_EXTERNAL_TAG,
)
load("@rules_jvm_external//:defs.bzl", "maven_install")
maven_install(
artifacts = [
#"com.google.guava:guava:21.0",
"org.apache.commons:commons-lang3:3.11",
"com.google.code.gson:gson:2.8.8",
"org.ocpsoft.prettytime:prettytime-nlp:5.0.2.Final"
],
repositories = [
# Private repositories are supported through HTTP Basic auth
"https://maven.google.com",
"https://repo1.maven.org/maven2",
],
)