Set artifact id to lower case

This commit is contained in:
extendedclip 2020-07-31 22:07:58 -04:00
parent 18854647bf
commit 91d370d883
2 changed files with 5 additions and 2 deletions

View File

@ -82,7 +82,7 @@ publishing {
} else { } else {
url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/") url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/")
} }
credentials { credentials {
username = System.getenv("JENKINS_USER") username = System.getenv("JENKINS_USER")
password = System.getenv("JENKINS_PASS") password = System.getenv("JENKINS_PASS")
@ -92,6 +92,9 @@ publishing {
publications { publications {
mavenJava(MavenPublication) { mavenJava(MavenPublication) {
artifactId = "placeholderapi"
from components.java from components.java
pom.withXml { pom.withXml {

View File

@ -1 +1 @@
rootProject.name = 'placeholderapi' rootProject.name = 'PlaceholderAPI'