We're currently using JitPack in Presto for the Iceberg dependency until there is an official release in Maven Central. Unlike a traditional Maven SNAPSHOT build, this is reasonably safe, as the artifacts should be effectively immutable as they are based on a commit ID.
One problem is that the source jars are not published. This seems to be caused by JitPack running the install task rather than publishToMavenLocal (see JitPack docs). Would it be possible to modify the build so that source jars are installed when running the install task?
We're currently using JitPack in Presto for the Iceberg dependency until there is an official release in Maven Central. Unlike a traditional Maven
SNAPSHOTbuild, this is reasonably safe, as the artifacts should be effectively immutable as they are based on a commit ID.One problem is that the source jars are not published. This seems to be caused by JitPack running the
installtask rather thanpublishToMavenLocal(see JitPack docs). Would it be possible to modify the build so that source jars are installed when running theinstalltask?