forked from google/closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaven_artifacts.bzl
More file actions
40 lines (37 loc) · 1.84 KB
/
maven_artifacts.bzl
File metadata and controls
40 lines (37 loc) · 1.84 KB
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
"""
List of external dependencies from Maven.
Make sure this file only uses two lists, and two lists only.
They are required to be of the same size at all times.
"""
MAVEN_ARTIFACTS = [
"args4j:args4j:2.33",
"com.google.code.gson:gson:2.9.1",
"com.google.errorprone:error_prone_annotations:2.15.0",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:guava:32.1.2-jre",
"com.google.guava:guava-testlib:32.1.2-jre",
"com.google.jimfs:jimfs:1.2",
"com.google.protobuf:protobuf-java:3.21.12",
"com.google.re2j:re2j:1.3",
"com.google.truth.extensions:truth-liteproto-extension:1.1",
"com.google.truth.extensions:truth-proto-extension:1.1",
"io.github.java-diff-utils:java-diff-utils:4.12",
"org.apache.ant:ant:1.10.11",
"org.jspecify:jspecify:0.2.0",
]
ORDERED_POM_OR_GRADLE_FILE_LIST = [
"https://github.com/kohsuke/args4j/blob/master/args4j/pom.xml",
"https://github.com/google/gson/blob/main/gson/pom.xml",
"https://github.com/google/error-prone/blob/master/annotations/pom.xml",
"https://github.com/google/guava/blob/master/futures/failureaccess/pom.xml",
"https://github.com/google/guava/blob/master/guava/pom.xml",
"https://github.com/google/guava/blob/master/guava-testlib/pom.xml",
"https://github.com/google/jimfs/blob/master/jimfs/pom.xml",
"https://github.com/protocolbuffers/protobuf/blob/main/java/core/pom.xml",
"https://github.com/google/re2j/blob/master/build.gradle",
"https://github.com/google/truth/blob/master/extensions/liteproto/pom.xml",
"https://github.com/google/truth/blob/master/extensions/proto/pom.xml",
"https://github.com/java-diff-utils/java-diff-utils/blob/master/java-diff-utils/pom.xml",
"https://github.com/apache/ant/blob/master/src/etc/poms/ant/pom.xml",
"https://github.com/jspecify/jspecify/blob/main/gradle/publish.gradle",
]