MavenCentral will introduce limits in two months. ...
# community-support
i
MavenCentral will introduce limits in two months. In particular, a file limit. Currently, Gradle generates hashes files twice, which makes every Gradle project ×2 the number of files of an equivalent Maven project. The limit is already quite low, this is very limiting to Gradle users until this is fixed. https://github.com/gradle/gradle/issues/20232
a
Currently, Gradle generates hashes files twice, which makes every Gradle project ×2 the number of files of an equivalent Maven project.
Gradle generates unnecessary checksum files for
.asc
files, but it's not twice the number of files, is it?
i
For every file
x
, these files should be generated:
Copy code
x
x.md5
x.sha1
x.sha256
x.sha512
x.asc
(6 files) but Gradle uselessly generates:
Copy code
x.asc.md5
x.asc.sha1
x.asc.sha256
x.asc.sha512
(4 files) Every file generates 10 files instead of 6, which is around ×2 the expected number.
thank you 1