forked from asinbow/junit5-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
62 lines (54 loc) · 1.57 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
load(":junit5.bzl", "junit_jupiter_java_repositories", "junit_platform_java_repositories")
load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")
JUNIT_JUPITER_VERSION = "5.6.2"
JUNIT_PLATFORM_VERSION = "1.6.2"
junit_jupiter_java_repositories(
version = JUNIT_JUPITER_VERSION,
)
junit_platform_java_repositories(
version = JUNIT_PLATFORM_VERSION,
)
jvm_maven_import_external(
name = "commons_logging",
artifact = "%s:%s:%s" % (
"commons-logging",
"commons-logging",
"1.2",
),
server_urls = ["https://repo1.maven.org/maven2"],
licenses = ["notice"], # EPL 2.0 License
fetch_sources = True,
)
jvm_maven_import_external(
name = "org_assertj_assertj_core",
artifact = "%s:%s:%s" % (
"org.assertj",
"assertj-core",
"3.16.1",
),
server_urls = ["https://repo1.maven.org/maven2"],
licenses = ["notice"], # EPL 2.0 License
fetch_sources = True,
)
jvm_maven_import_external(
name = "org_springframework_spring_core",
artifact = "%s:%s:%s" % (
"org.springframework",
"spring-core",
"5.2.7.RELEASE",
),
server_urls = ["https://repo1.maven.org/maven2"],
licenses = ["notice"], # EPL 2.0 License
fetch_sources = True,
)
jvm_maven_import_external(
name = "org_springframework_spring_test",
artifact = "%s:%s:%s" % (
"org.springframework",
"spring-test",
"5.2.7.RELEASE",
),
server_urls = ["https://repo1.maven.org/maven2"],
licenses = ["notice"], # EPL 2.0 License
fetch_sources = True,
)