-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
25 lines (21 loc) · 917 Bytes
/
MODULE.bazel
File metadata and controls
25 lines (21 loc) · 917 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
JUNIT_VERSION = "6.0.0"
JAZZER_VERSION = "0.25.1"
bazel_dep(name = "rules_jvm_external", version = "6.8")
bazel_dep(name = "contrib_rules_jvm", version = "0.30.0")
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
artifacts = [
"org.junit.platform:junit-platform-launcher:%s" % JUNIT_VERSION,
"org.junit.platform:junit-platform-reporting:%s" % JUNIT_VERSION,
"org.junit.jupiter:junit-jupiter-api:%s" % JUNIT_VERSION,
"org.junit.jupiter:junit-jupiter-params:%s" % JUNIT_VERSION,
"org.junit.jupiter:junit-jupiter-engine:%s" % JUNIT_VERSION,
"com.code-intelligence:jazzer-junit:%s" % JAZZER_VERSION,
"com.code-intelligence:jazzer-api:%s" % JAZZER_VERSION,
"com.code-intelligence:jazzer:%s" % JAZZER_VERSION,
],
repositories = [
"https://repo1.maven.org/maven2",
],
)
use_repo(maven, "maven")