From 4c8457ad141c1ae454a7b303aaab210236861bdc Mon Sep 17 00:00:00 2001 From: matt <4009945+MattBDev@users.noreply.github.com> Date: Fri, 22 Feb 2019 11:54:13 -0500 Subject: [PATCH] OCD Signed-off-by: matt <4009945+MattBDev@users.noreply.github.com> --- Core/build.gradle | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Core/build.gradle b/Core/build.gradle index af9efd311..3a8864cfa 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -19,34 +19,34 @@ processResources { } } -jar.archiveName = "Plotsquared-Api-${project.parent.version}.jar" -jar.destinationDir = file '../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/' + project.parent.version +jar.archiveName = "PlotSquared-API-${project.parent.version}.jar" +jar.destinationDir = file '../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/' + project.parent.version task createPom { doLast { pom { project { groupId 'com.github.intellectualsites.plotsquared' - artifactId 'Plotsquared-Api' + artifactId 'PlotSquared-API' version project.parent.version } - }.writeTo("../mvn/com/github/intellectualsites/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 { project { groupId 'com.github.intellectualsites.plotsquared' - artifactId 'Plotsquared-Api' + artifactId 'PlotSquared-API' version 'latest' } - }.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/Plotsquared-Api-latest.pom") + }.writeTo("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/latest/PlotSquared-API-latest.pom") } } task copyFiles { doLast { copy { - from "../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/${project.parent.version}/" - into '../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/' + from "../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/${project.parent.version}/" + into '../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/latest/' include('*.jar') - rename("Plotsquared-Api-${project.parent.version}.jar", 'Plotsquared-Api-latest.jar') + rename("PlotSquared-API-${project.parent.version}.jar", 'PlotSquared-API-latest.jar') } } }