Skip to content

Commit f37226c

Browse files
Workaround for build error on CI: zip END header not found.
1 parent 1291f86 commit f37226c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

gradle/repositories.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ repositories {
77
maven {
88
url project.rootProject.property("mavenRepositoryProxy")
99
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+
}
1017
}
1118
}
1219
mavenCentral()

0 commit comments

Comments
 (0)