konform-kt / konform

Portable validations for Kotlin
https://www.konform.io
MIT License
636 stars 39 forks source link

Fix project information not being included in the maven poms #108

Closed dhoepelman closed 2 months ago

dhoepelman commented 2 months ago

Bumps JVM version to 11 because that's now required by the publish plugin

dhoepelman commented 2 months ago

This seems to fix the artifacts locally, hopefully this is enough to satisfy sonatype now

The most important change is

        // before: create<MavenPublication>("mavenJava") {
        publications.withType(MavenPublication::class) {

kotlin multiplatform already creates its own publications, so this created a new separate incorrect one. This new one sets the metadata for all publications created by kotlin multiplatform