so… I was trying to publish a library in maven with some kotlin code in it… nothing kmmp… And saw s...
j
so… I was trying to publish a library in maven with some kotlin code in it… nothing kmmp… And saw something like this to use the maven-publish plugin
Copy code
publishing {
    publications {
        release(MavenPublication) {
            from components.java
        }
    }
and I also saw
components.kotlin
somewhere else… What is the difference in using
components.java
and
components.koltin
?