Skip to content

Commit fd778d0

Browse files
Make maven artifact name lowercase
1 parent 199e127 commit fd778d0

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ plugins {
55
}
66

77
group = "com.github.minecraftschurlimods"
8-
version = "1.16"
9-
base.archivesName = "HelperPlugin"
8+
version = "1.17"
9+
base.archivesName = "helperplugin"
1010

1111
java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))
1212

@@ -32,6 +32,10 @@ gradlePlugin {
3232
}
3333
}
3434

35+
publishing.publications.withType<MavenPublication> {
36+
artifactId = base.archivesName.get()
37+
}
38+
3539
publishing.repositories.maven {
3640
val mavenUrl = project.providers.environmentVariable("MAVEN_URL").map { uri(it) }
3741
val mavenUser = project.providers.environmentVariable("MAVEN_USER")

0 commit comments

Comments
 (0)