How to also publish mixed java/kotlin sources in a...
# gradle
t
How to also publish mixed java/kotlin sources in artifactory. I have following task to generate them:
Copy code
task packageLibrarySources(type: Jar, dependsOn: classes) {
    classifier = 'sources'
    from sourceSets.main.allSource
}
But it includes only java one.