Skip to content

Commit 707e3d7

Browse files
committed
(fix) lowercase artifactId
1 parent 8a32118 commit 707e3d7

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
@@ -1,4 +1,5 @@
11
import io.papermc.paperweight.util.path
2+
import java.util.*
23

34
plugins {
45
`java-library`
@@ -69,7 +70,7 @@ publishing {
6970
create<MavenPublication>("mavenJava") {
7071
from(getComponents()["java"])
7172
afterEvaluate {
72-
artifactId = pluginName
73+
artifactId = pluginName.lowercase()
7374
groupId = "$group"
7475
version =
7576
"$majorVersion.$minorVersion.$buildNumber-${

0 commit comments

Comments
 (0)