Closed yogurtearl closed 4 months ago
Bad metadata in the published pom file: https://repo1.maven.org/maven2/com/google/maps/android/maps-compose-utils/6.1.0/maps-compose-utils-6.1.0.pom
<dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>android-core</version> <scope>runtime</scope> </dependency>
<dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.13.1</version> <scope>runtime</scope> </dependency>
This line is wrong:
https://github.com/googlemaps/android-maps-compose/blob/01ee126fb44031ae5f7691df2fc376fc1d28b36c/gradle/libs.versions.toml#L28
It should be version.ref not version
version.ref
version
Something like
androidx-core = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
with this at the top of the file in the [versions] section.
[versions]
androidx-core = "1.13.1"
Thanks for reporting this @yogurtearl . This PR will fix the problem.
:tada: This issue has been resolved in version 6.1.1 :tada:
The release is available on:
v6.1.1
Your semantic-release bot :package::rocket:
Problem:
Bad metadata in the published pom file: https://repo1.maven.org/maven2/com/google/maps/android/maps-compose-utils/6.1.0/maps-compose-utils-6.1.0.pom
Actual
Expected
Cause:
This line is wrong:
https://github.com/googlemaps/android-maps-compose/blob/01ee126fb44031ae5f7691df2fc376fc1d28b36c/gradle/libs.versions.toml#L28
It should be
version.ref
notversion
Something like
with this at the top of the file in the
[versions]
section.