From be51d8e1597650e3f30d75787283845435a6d636 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 22 Feb 2019 14:38:18 +0000 Subject: [PATCH] Correct artifact id for maven --- Core/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/build.gradle b/Core/build.gradle index 2327ddf81..af9efd311 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -26,14 +26,14 @@ task createPom { pom { project { groupId 'com.github.intellectualsites.plotsquared' - artifactId 'Plotsquared' + artifactId 'Plotsquared-Api' version project.parent.version } }.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' + artifactId 'Plotsquared-Api' version 'latest' } }.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/Plotsquared-Api-latest.pom")