Darren Bell
07/23/2020, 11:34 AMRobert Jaros
07/23/2020, 11:42 AMmaven-publish
plugin just like for other artifactsDarren Bell
07/23/2020, 12:07 PMpublishing {
publications {
create<MavenPublication>("mavenJava") {
artifactId = "my-library"
from(components["java"])
There is no java component, what should this be. Do you have a working example.
ThanksRobert Jaros
07/23/2020, 12:21 PMpublishing {
publications {
create<MavenPublication>("kotlin") {
from(components["kotlin"])
pom {
// ...
}
}
}
}
Robert Jaros
07/23/2020, 12:28 PMbuildSrc
sources so it's a bit different than plain `build.gradle.kts`:
https://github.com/rjaros/kvision/blob/master/buildSrc/src/main/kotlin/Shared.kt
https://github.com/rjaros/kvision/blob/master/build.gradle.kts#L57Darren Bell
07/23/2020, 12:30 PM