From edc758334c6acaeff960cdd35bb0e757bb14f70a Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Tue, 25 Dec 2018 18:30:42 +0100 Subject: [PATCH] Actually copy over the files as well... --- Core/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Core/build.gradle b/Core/build.gradle index 6830f8d6c..6e9fcfa0d 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -18,8 +18,8 @@ processResources { } } -jar.archiveName = "plotsquared-api-${project.parent.version}.jar" -jar.destinationDir = file '../mvn/com/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 { @@ -42,10 +42,10 @@ task createPom { task copyFiles { doLast { copy { - from "../mvn/com/plotsquared/plotsquared-api/${project.parent.version}/" - into '../mvn/com/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') } } }