Hi, I have a problem with gradle script for publis...
# gradle
h
Hi, I have a problem with gradle script for publishing my new library to bintray. There is error from gradle after invoking bintrayUpload
Copy code
Script '/home/hiosdra/Projects/CessabitAnimator/publish.gradle' line: 20

* What went wrong:
Execution failed for task ':generatePomFileForProductionPublication'.
> Could not apply withXml() to generated POM
   > Could not get unknown property 'implementation' for configuration container of type org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.
There is link to actual version of this file - https://github.com/Hiosdra/CessabitAnimator/blob/publish-script/publish.gradle
g
Well, I don’t know if this is related, but I had some problem like these one. What solved the problem to me was to apply the kotlin-multiplatform plugin or some other plugin in the beginning of my build.gradle.kts file. And check if you need to use a
depencies {}
block or a `kotlin {dependencies {}}``