solonovamax
03/19/2024, 2:23 AMArtifactRepository, similar to a MavenArtifactRepository, however it
• only accepts uploads (not downloads) of artifacts
• will pack all the artifacts into a zip before uploading
• otherwise acts identically to DefaultMavenArtifactRepository (ie. will generate .sha1, .sha256, and .sha512 files, .md5 files, will build the pom, etc.)
the problem is, looking at how ArtifactRepository are implemented, it seems like I'd need to use a lot of internal apis, as I'd most likely need to have my own instance of MavenPublisher, among other things, in order to be able to properly bundle the files into a zip.
does anyone happen to know of any custom implementations of `ArtifactRepository`s I could look at, or some pointers on what things I should look into?ephemient
03/19/2024, 3:22 AMsolonovamax
03/19/2024, 3:49 AMThank you for your interest in Gradle!
This issue needs a decision from the team responsible for that area. They have been informed. Response time may vary.from: the issue you linked
solonovamax
03/19/2024, 3:54 AMAbstractMavenPublisher.solonovamax
03/19/2024, 3:55 AMephemient
03/19/2024, 4:54 AMephemient
03/19/2024, 5:00 AMsolonovamax
03/19/2024, 6:00 PMephemient
03/19/2024, 10:39 PMsolonovamax
03/21/2024, 10:21 PMAbstractMavenPublisher?