Can someone help here: <https://kotlinlang.slack.c...
# gradle
c
Are you on Gradle 8+?
If so, this is a bug in one of the plugins (not sure if it's Kotlin, Publishing or Signing) which declares dependencies incorrectly. Before Gradle 8, it was just a warning
p
Thanks , I am on gradle 8 yes. Sounds like a bug in the publishing plugin, it is the one depending on signin and have to declare the tasks dependency I guess
1
c
You can probably force a dependency, but I haven't tested it yet
Copy code
tasks.publishAndroidReleasePublicationToMavenRepository {
  dependsOn(tasks.signJsPublication)
}
p
I believe declaring each individual dependency works, I check later