We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
zip END header not found
1 parent 1291f86 commit f37226cCopy full SHA for f37226c
1 file changed
gradle/repositories.gradle
@@ -7,6 +7,13 @@ repositories {
7
maven {
8
url project.rootProject.property("mavenRepositoryProxy")
9
allowInsecureProtocol = true
10
+ content {
11
+ // TODO: For unknown reasons `org.tabletest` artifacts resolved as invalid jars via `mavenRepositoryProxy`.
12
+ // Build is failing with message: `error reading .gradle/caches/.../tabletest-junit-1.2.0.jar; zip END header not found`
13
+ // Revisit this place once `org.tabletest` artifacts will be updated, there is a chance that issue will be fixed.
14
+ // Temporary exclude it here so Gradle resolves it directly from mavenCentral().
15
+ excludeGroup "org.tabletest"
16
+ }
17
}
18
19
mavenCentral()
0 commit comments