vanniktech / gradle-maven-publish-plugin

A Gradle plugin that publishes your Android and Kotlin libraries, including sources and javadoc, to Maven Central or any other Nexus instance.
https://vanniktech.github.io/gradle-maven-publish-plugin
Apache License 2.0
1.2k stars 110 forks source link

Dependency version information is missing #802

Open fenggit opened 6 days ago

fenggit commented 6 days ago

After successfully publishing Android to Maven Central, the Maven Central backend prompts that Dependency version information is missing. How should I configure it?

image
fenggit commented 5 days ago

I also set:coordinates("io.github.test1233", "MyTest", "1.0.0")

jocoand commented 3 days ago

My workaround is by adding the versions explicitly to all my library dependencies

implementation("androidx.compose.ui")
// update to 
implementation("androidx.compose.ui:1.6.8")