PlotSquared/Bukkit/build.gradle

106 lines
3.6 KiB
Groovy
Raw Normal View History

2019-08-08 01:16:44 +02:00
plugins {
id "com.github.johnrengelman.shadow"
}
2016-07-01 23:13:49 +02:00
repositories {
2019-08-08 01:16:44 +02:00
maven { url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url = "https://jitpack.io" }
maven { url = "https://repo.codemc.org/repository/maven-public" }
2020-02-16 20:33:24 +01:00
maven { url = "http://repo.extendedclip.com/content/repositories/placeholderapi/" }
maven {
2019-08-08 01:16:44 +02:00
name = "papermc"
url = "https://papermc.io/repo/repository/maven-public/"
}
maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" }
2016-11-21 04:24:27 +01:00
mavenLocal()
2016-07-01 23:13:49 +02:00
}
2019-08-05 19:33:27 +02:00
2016-02-23 05:11:28 +01:00
dependencies {
2020-05-14 15:45:27 +02:00
implementation(project(":PlotSquared-Core"))
2020-04-11 19:52:45 +02:00
compile("org.bstats:bstats-bukkit:1.7")
2020-05-14 15:45:27 +02:00
compile(project(":PlotSquared-Core"))
compile("com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT")
//implementation 'com.onarandombox.multiversecore:Multiverse-Core:3.0.0-SNAPSHOT'
2020-01-22 23:54:37 +01:00
implementation("org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT")
2019-12-27 17:33:52 +01:00
compile(group: "com.sk89q.worldedit", name: "worldedit-bukkit", version: "7.0.1")
2019-08-08 01:16:44 +02:00
compile("io.papermc:paperlib:1.0.2")
2019-09-04 03:04:51 +02:00
implementation("net.kyori:text-adapter-bukkit:3.0.3")
compile("com.github.MilkBowl:VaultAPI:1.7") {
2019-08-08 01:16:44 +02:00
exclude(module: "bukkit")
2016-11-21 04:24:27 +01:00
}
2020-02-16 20:33:24 +01:00
implementation("me.clip:placeholderapi:2.10.4")
2020-05-16 21:36:54 +02:00
compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false }
2016-02-23 05:11:28 +01:00
}
2018-11-15 00:06:20 +01:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
processResources {
2019-08-06 21:05:04 +02:00
from("src/main/resources") {
2019-08-08 01:16:44 +02:00
include("plugin.yml")
expand(
2018-08-10 17:01:10 +02:00
name: project.parent.name,
version: project.parent.version
)
}
}
2019-10-30 15:05:52 +01:00
//noinspection GroovyAssignabilityCheck
2020-04-11 02:57:00 +02:00
jar.archiveFileName = "PlotSquared-Bukkit-${project.parent.version}.jar"
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-Bukkit/" + project.parent.version)
2019-10-30 15:05:52 +01:00
task createPom {
doLast {
pom {
project {
groupId = rootProject.group
artifactId = "PlotSquared-Bukkit"
version = rootProject.version
2019-10-30 15:05:52 +01:00
}
}.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/PlotSquared-Bukkit-${project.parent.version}.pom")
2019-10-30 15:05:52 +01:00
pom {
project {
groupId = rootProject.group
artifactId = "PlotSquared-Bukkit"
2019-10-30 15:05:52 +01:00
version = "latest"
}
}.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/PlotSquared-Bukkit-latest.pom")
.writeTo("pom.xml")
2019-10-30 15:05:52 +01:00
}
}
task copyFiles {
doLast {
copy {
from("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/")
into("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/")
include("PlotSquared-Bukkit*.jar")
rename("PlotSquared-Bukkit-${project.parent.version}.jar", "PlotSquared-Bukkit-latest.jar")
2019-10-30 15:05:52 +01:00
}
}
}
2016-07-01 23:13:49 +02:00
2016-02-23 05:11:28 +01:00
shadowJar {
dependencies {
2020-05-14 15:45:27 +02:00
include(dependency(":PlotSquared-Core"))
2019-08-05 19:33:27 +02:00
include(dependency("io.papermc:paperlib:1.0.2"))
2019-08-08 01:16:44 +02:00
include(dependency("net.kyori:text-adapter-bukkit:3.0.3"))
2020-04-11 19:52:45 +02:00
include(dependency("org.bstats:bstats-bukkit:1.7"))
2016-02-23 05:11:28 +01:00
}
2020-04-11 02:19:18 +02:00
relocate('net.kyori.text', 'com.plotsquared.formatting.text')
relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib")
relocate("org.bstats", "com.plotsquared.metrics")
2020-05-14 14:51:23 +02:00
archiveFileName = "${project.name}-${parent.version}.jar"
2019-09-07 22:46:13 +02:00
destinationDirectory = file "../target"
}
2016-07-01 23:13:49 +02:00
shadowJar.doLast {
task ->
2018-08-10 17:01:10 +02:00
ant.checksum file: task.archivePath
2016-02-23 05:11:28 +01:00
}
build.dependsOn(shadowJar)
2019-10-30 15:05:52 +01:00
build.finalizedBy(copyFiles)
copyFiles.dependsOn(createPom)