Update maven info for Core

This commit is contained in:
Sauilitired 2018-12-25 18:27:07 +01:00
parent 1ca50cdbd2
commit 71baee063c
No known key found for this signature in database
GPG Key ID: C0207FF7EA146678

View File

@ -24,18 +24,18 @@ task createPom {
doLast { doLast {
pom { pom {
project { project {
groupId 'com.plotsquared' groupId 'com.github.intellectualsites.plotsquared'
artifactId 'plotsquared-api' artifactId 'Plotsquared'
version project.parent.version version project.parent.version
} }
}.writeTo("../mvn/com/plotsquared/plotsquared-api/${project.parent.version}/plotsquared-api-${project.parent.version}.pom") }.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/${project.parent.version}/Plotsquared-Api-${project.parent.version}.pom")
pom { pom {
project { project {
groupId 'com.plotsquared' groupId 'com.github.intellectualsites.plotsquared'
artifactId 'plotsquared-api' artifactId 'Plotsquared'
version 'latest' version 'latest'
} }
}.writeTo("../mvn/com/plotsquared/plotsquared-api/latest/plotsquared-api-latest.pom") }.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/${project.parent.version}/Plotsquared-Api-latest.pom")
} }
} }