solonovamax
03/05/2025, 3:43 AMdependsOn
, as that is brittle and prone to breaking.
This is quite a serious issue, as it is causing all my CI builds to fail and is actively preventing me from publishing any releases.
The project can be found here, and the latest build is currently failing.solonovamax
03/05/2025, 4:14 AM[archiveBaseName]-[archiveAppendix]-[archiveVersion]-[archiveClassifier].[archiveExtension]
I had the following code in my buildscript:
tasks.withType<AbstractArchiveTask>().configureEach {
archiveBaseName = project.name
}
Since previously it would set the archiveAppendix
to be the platform target but it is now using the archiveBaseName
, by configuring the archiveBaseName
myself I'm unwittingly overwriting it and causing them all to conflict.