diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 237c0740e..de4ca4e9b 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -58,8 +58,8 @@ shadowJar { relocate('net.kyori.text', 'com.github.intellectualsites.plotsquared.formatting.text') relocate("io.papermc.lib", "com.github.intellectualsites.plotsquared.bukkit.paperlib") // relocate('org.mcstats', 'com.plotsquared.stats') - archiveName = "${parent.name}-${project.name}-${parent.version}.jar" - destinationDir = file "../target" + archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar" + destinationDirectory = file "../target" } shadowJar.doLast { diff --git a/Core/build.gradle b/Core/build.gradle index 53f305992..90a33b8d2 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -35,8 +35,9 @@ processResources { } } -jar.setArchiveName("PlotSquared-API-${project.parent.version}.jar") -jar.destinationDir = file("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/" + project.parent.version) +//noinspection GroovyAssignabilityCheck +jar.archiveFileName = "PlotSquared-API-${project.parent.version}.jar" +jar.destinationDirectory = file("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/" + project.parent.version) task createPom { doLast { pom { diff --git a/build.gradle b/build.gradle index f2afef586..3d83a509b 100644 --- a/build.gradle +++ b/build.gradle @@ -104,8 +104,8 @@ subprojects { } relocate("io.papermc.lib", "com.github.intellectualsites.plotsquared.bukkit.paperlib") // relocate('org.mcstats', 'com.plotsquared.stats') - archiveName = "${parent.name}-${project.name}-${parent.version}.jar" - destinationDir = file "../target" + archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar" + destinationDirectory = file "../target" } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 4b7e1f3d3..7c4388a92 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists