-
Notifications
You must be signed in to change notification settings - Fork 3
/
WORKSPACE
85 lines (78 loc) · 3.05 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
74
75
76
77
78
79
80
81
82
83
84
85
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
RULES_JVM_EXTERNAL_TAG = "4.2"
RULES_JVM_EXTERNAL_SHA = "cd1a77b7b02e8e008439ca76fd34f5b07aecb8c752961f9640dea15e9e5ba1ca"
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")
load("@rules_jvm_external//:specs.bzl", "maven")
http_archive(
name = "google_bazel_common",
sha256 = "61cd7c2a24a1b066848a68c56deca799dd9d0329cb9032d1686859cdd2c05be2",
strip_prefix = "bazel-common-2e42988b7a3d1e3b11ab4db2d7c28f794500a672",
urls = ["https://github.com/google/bazel-common/archive/2e42988b7a3d1e3b11ab4db2d7c28f794500a672.zip"],
)
load("@google_bazel_common//:workspace_defs.bzl", "google_common_workspace_rules")
google_common_workspace_rules()
maven_install(
artifacts = [
"aopalliance:aopalliance:1.0",
"com.google.auto.value:auto-value:1.6.3",
"com.google.code.findbugs:jsr305:3.0.1",
"com.google.dagger:dagger:2.22.1",
"com.google.dagger:dagger-producers:2.22.1",
"com.google.errorprone:error_prone_annotations:2.0.18",
"com.google.guava:guava:30.1-jre",
"commons-logging:commons-logging:1.2",
"javax.inject:javax.inject:1",
"javax.persistence:javax.persistence-api:2.2",
"javax.servlet:servlet-api:2.5",
"org.apache.struts:struts2-core:2.3.37",
"org.apache.struts.xwork:xwork-core:2.3.37",
"org.ow2.asm:asm:9.2",
"org.springframework:spring-core:3.2.18.RELEASE",
"org.springframework:spring-beans:3.2.18.RELEASE",
maven.artifact(
"biz.aQute", "bnd", "0.0.384", testonly = True
),
maven.artifact(
"com.google.guava", "guava-testlib", "30.1-jre", testonly = True
),
maven.artifact(
"com.google.truth", "truth", "0.45", testonly = True
),
maven.artifact(
"javax.inject", "javax.inject-tck", "1", testonly = True
),
maven.artifact(
"junit", "junit", "4.13.2", testonly = True
),
maven.artifact(
"org.apache.felix", "org.apache.felix.framework", "3.0.5", testonly = True
),
maven.artifact(
"org.easymock", "easymock", "3.1", testonly = True
),
maven.artifact(
"org.hamcrest", "hamcrest", "2.2", testonly = True
),
maven.artifact(
"org.hibernate.javax.persistence", "hibernate-jpa-2.0-api", "1.0.0.Final", testonly = True
),
maven.artifact(
"org.hibernate", "hibernate-core", "5.6.3.Final", testonly = True
),
maven.artifact(
"org.hsqldb", "hsqldb-j5", "2.0.0", testonly = True
),
maven.artifact(
"org.mockito", "mockito-core", "4.2.0", testonly = True
),
],
repositories = [
"https://repo1.maven.org/maven2",
],
)