forked from Tinder/bazel-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartifacts.bzl
More file actions
16 lines (14 loc) · 703 Bytes
/
artifacts.bzl
File metadata and controls
16 lines (14 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
""" Artifacts used to build bazel-diff """
load("@rules_jvm_external//:specs.bzl", "maven")
BAZEL_DIFF_MAVEN_ARTIFACTS = [
maven.artifact("junit", "junit", "4.13.2"),
maven.artifact("org.mockito.kotlin", "mockito-kotlin", "4.0.0", testonly = True),
maven.artifact("com.willowtreeapps.assertk", "assertk-jvm", "0.25", testonly = True),
maven.artifact("io.insert-koin", "koin-test-junit4", "3.1.6", testonly = True),
"info.picocli:picocli:jar:4.6.3",
"com.google.code.gson:gson:jar:2.9.0",
"com.google.guava:guava:31.1-jre",
"org.apache.commons:commons-pool2:2.11.1",
"io.insert-koin:koin-core-jvm:3.1.6",
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2",
]