Pierre Carrier
05/29/2023, 8:38 PM* What went wrong:
A problem was found with the configuration of task ':signJvmPublication' (type 'Sign').
- Gradle detected a problem with the following location: '/Users/pcarrier/src/graphed/build/libs/graphed-0.1.0-SNAPSHOT-javadoc.jar.asc'.
Reason: Task ':publishJsPublicationToOssRepository' uses this output of task ':signJvmPublication' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
what I did: https://github.com/pcarrier/graphed/commit/90fb68f1e04c545d818ec5b0579393f191b356b5Adam S
05/29/2023, 8:45 PMtasks.withType<AbstractPublishToMaven>().configureEach {
dependsOn(tasks.withType<Sign>())
}
Pierre Carrier
05/29/2023, 8:52 PM