Fix artifact ids

This commit is contained in:
Jason Penilla
2021-06-16 16:23:02 -07:00
parent 7de25fd330
commit 48c1ea17c3
4 changed files with 27 additions and 21 deletions

View File

@@ -1,3 +1,5 @@
import java.util.Locale
plugins {
`java-library`
`maven-publish`
@@ -27,6 +29,7 @@ dependencies {
configure<PublishingExtension> {
publications.create<MavenPublication>("maven") {
artifactId = project.name.toLowerCase(Locale.ENGLISH)
from(components["java"])
}
}