Read Gradle module metadata to select an artifact with maven
Maven doesn't read Gradle module metadata to select an artifact.
With Kotlin MultiPlatform, for instance
okio publishes a bunch of artifacts like
okio-jvm/
okio-linuxx64/
okio-macosarm64/
okio-macosx64/
okio-metadata/
okio-mingwx64/
When depending on it with Gradle, one can declare a dependency on com.squareup.okio:okio and Gradle will select the corresponding artifact. If the dependency is defined in Maven, the...