does anyone have experience with maven publishing ...
# korge
p
does anyone have experience with maven publishing in a korge project? I'm trying to deploy the generated android's aar file together with the source set, the problem is that I cannot find the way to indicate the source artifact.
Copy code
publishing {
    publications {
        register("aar", MavenPublication::class) {
            groupId = "com.senaptec"
            artifactId = "toolframework"
            version = project.version.toString()

            artifact("$buildDir/platforms/android/build/outputs/aar/android-debug.aar")
            artifact(androidSourcesJar)
        }
    }
}
the artifact(androidSourcesJar) section doesn't work because that source set doesn't actually exists
d
p
excellent! seems to be what i'm looking for
👍 1