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

View File

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