Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit bbdb1b1

Browse files
committed
fix: invalid maven artifact ID configuration
1 parent 7c7691b commit bbdb1b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ subprojects {
5656
if (System.getenv("PublishToMaven").isNullOrBlank()) {
5757
versionName = "$versionName-SNAPSHOT"
5858
}
59+
versionName = versionName.substring(1) // remove 'v' prefix
5960
pomFromGradleProperties()
60-
coordinates("io.github.itsaky", "android-tree-sitter", versionName)
61+
coordinates("io.github.itsaky", project.name, versionName)
6162
publishToMavenCentral(SonatypeHost.S01)
6263
signAllPublications()
6364
configure(AndroidSingleVariantLibrary(publishJavadocJar = false))

0 commit comments

Comments
 (0)