I’m trying to upload a multiplatform library to bintray, I’m following their doc from the github page :https://github.com/bintray/gradle-bintray-plugin
I’m also using kotlin dsl for my build file and I’m not sure what I’m supposed to do for the step 7 :
Copy code
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'org.jfrog.gradle.sample'
artifactId 'gradle-project'
version '1.1'
}
}
}