geforkt von Mirrors/FastAsyncWorldEdit
189 Zeilen
6.5 KiB
Plaintext
189 Zeilen
6.5 KiB
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
project.description = "Bukkit"
|
|
|
|
applyPlatformAndCoreConfiguration()
|
|
applyShadowConfiguration()
|
|
|
|
repositories {
|
|
maven {
|
|
name = "SpigotMC"
|
|
url = uri("https://hub.spigotmc.org/nexus/content/groups/public")
|
|
}
|
|
maven {
|
|
name = "PaperMC"
|
|
url = uri("https://papermc.io/repo/repository/maven-public/")
|
|
}
|
|
maven {
|
|
name = "EngineHub"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
maven {
|
|
name = "JitPack"
|
|
url = uri("https://jitpack.io")
|
|
}
|
|
maven {
|
|
name = "ProtocolLib"
|
|
url = uri("https://repo.dmulloy2.net/nexus/repository/public/")
|
|
}
|
|
maven {
|
|
name = "OSS Sonatype Snapshots"
|
|
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
|
|
}
|
|
maven {
|
|
name = "OSS Sonatype Releases"
|
|
url = uri("https://oss.sonatype.org/content/repositories/releases/")
|
|
}
|
|
flatDir { dir(File("src/main/resources")) }
|
|
}
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("com.google.guava:guava:21.0")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Modules
|
|
api(projects.worldeditCore)
|
|
api(projects.worldeditLibs.bukkit)
|
|
implementation(":worldedit-adapters:")
|
|
|
|
// Minecraft expectations
|
|
implementation(libs.fastutil)
|
|
|
|
// Platform expectations
|
|
api(libs.paper) {
|
|
exclude("junit", "junit")
|
|
isTransitive = false
|
|
exclude(group = "org.slf4j", module = "slf4j-api")
|
|
}
|
|
|
|
// Logging
|
|
implementation(libs.log4j)
|
|
implementation(libs.log4jBom) {
|
|
because("Spigot provides Log4J (sort of, not in API, implicitly part of server)")
|
|
}
|
|
|
|
// Plugins
|
|
compileOnly(libs.vault) { isTransitive = false }
|
|
compileOnly(libs.dummypermscompat) {
|
|
exclude("com.github.MilkBowl", "VaultAPI")
|
|
}
|
|
compileOnly(libs.worldguard) {
|
|
exclude("com.sk89q.worldedit", "worldedit-bukkit")
|
|
exclude("com.sk89q.worldedit", "worldedit-core")
|
|
exclude("com.sk89q.worldedit.worldedit-libs", "bukkit")
|
|
exclude("com.sk89q.worldedit.worldedit-libs", "core")
|
|
}
|
|
implementation(libs.mapmanager) { isTransitive = false }
|
|
implementation(libs.griefprevention) { isTransitive = false }
|
|
implementation(libs.griefdefender) { isTransitive = false }
|
|
implementation(libs.mcore) { isTransitive = false }
|
|
implementation(libs.residence) { isTransitive = false }
|
|
compileOnly(libs.towny) { isTransitive = false }
|
|
implementation(libs.protocollib) { isTransitive = false }
|
|
api(libs.plotsquaredV6Bukkit) { isTransitive = false }
|
|
|
|
// Third party
|
|
implementation(libs.flowmath) {
|
|
because("This dependency is needed by GriefDefender but not exposed transitively.")
|
|
isTransitive = false
|
|
}
|
|
implementation(libs.paperlib)
|
|
implementation(libs.bstatsBukkit)
|
|
implementation(libs.bstatsBase)
|
|
implementation(libs.serverlib)
|
|
api(libs.paster)
|
|
api(libs.lz4Java)
|
|
api(libs.lz4JavaStream) { isTransitive = false }
|
|
api(libs.sparsebitset) { isTransitive = false }
|
|
api(libs.parallelgzip) { isTransitive = false }
|
|
compileOnly(libs.adventure)
|
|
compileOnlyApi(libs.checkerqual)
|
|
|
|
// Tests
|
|
testImplementation(libs.mockito)
|
|
testImplementation(libs.adventure)
|
|
testImplementation(libs.checkerqual)
|
|
testImplementation(libs.paper) { isTransitive = true }
|
|
}
|
|
|
|
tasks.named<Copy>("processResources") {
|
|
val internalVersion = project.ext["internalVersion"]
|
|
inputs.property("internalVersion", internalVersion)
|
|
filesMatching("plugin.yml") {
|
|
expand("internalVersion" to internalVersion)
|
|
}
|
|
// exclude adapters entirely from this JAR, they should only be in the shadow JAR
|
|
exclude("**/worldedit-adapters.jar")
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
manifest {
|
|
attributes("Class-Path" to CLASSPATH,
|
|
"WorldEdit-Version" to project.version)
|
|
}
|
|
}
|
|
|
|
addJarManifest(WorldEditKind.Plugin, includeClasspath = true)
|
|
|
|
tasks.named<ShadowJar>("shadowJar") {
|
|
from(zipTree("src/main/resources/worldedit-adapters.jar").matching {
|
|
exclude("META-INF/")
|
|
})
|
|
archiveFileName.set("${rootProject.name}-Bukkit-${project.version}.${archiveExtension.getOrElse("jar")}")
|
|
dependencies {
|
|
// In tandem with not bundling log4j, we shouldn't relocate base package here.
|
|
// relocate("org.apache.logging", "com.sk89q.worldedit.log4j")
|
|
relocate("org.antlr.v4", "com.sk89q.worldedit.antlr4")
|
|
include(dependency(":worldedit-core"))
|
|
include(dependency(":worldedit-libs:bukkit"))
|
|
// Purposefully not included, we assume (even though no API exposes it) that Log4J will be present at runtime
|
|
// If it turns out not to be true for Spigot/Paper, our only two official platforms, this can be uncommented.
|
|
// include(dependency("org.apache.logging.log4j:log4j-api"))
|
|
include(dependency("org.antlr:antlr4-runtime"))
|
|
relocate("org.bstats", "com.sk89q.worldedit.bstats") {
|
|
include(dependency("org.bstats:"))
|
|
}
|
|
relocate("io.papermc.lib", "com.sk89q.worldedit.bukkit.paperlib") {
|
|
include(dependency("io.papermc:paperlib"))
|
|
}
|
|
relocate("it.unimi.dsi.fastutil", "com.sk89q.worldedit.bukkit.fastutil") {
|
|
include(dependency("it.unimi.dsi:fastutil"))
|
|
}
|
|
relocate("org.incendo.serverlib", "com.fastasyncworldedit.serverlib") {
|
|
include(dependency("org.incendo.serverlib:ServerLib:2.2.1"))
|
|
}
|
|
relocate("com.intellectualsites.paster", "com.fastasyncworldedit.paster") {
|
|
include(dependency("com.intellectualsites.paster:Paster:1.1.1"))
|
|
}
|
|
relocate("com.github.luben", "com.fastasyncworldedit.core.zstd") {
|
|
include(dependency("com.github.luben:zstd-jni:1.5.0-4"))
|
|
}
|
|
relocate("net.jpountz", "com.fastasyncworldedit.core.jpountz") {
|
|
include(dependency("net.jpountz:lz4-java-stream:1.0.0"))
|
|
}
|
|
relocate("org.lz4", "com.fastasyncworldedit.core.lz4") {
|
|
include(dependency("org.lz4:lz4-java:1.8.0"))
|
|
}
|
|
relocate("net.kyori", "com.fastasyncworldedit.core.adventure") {
|
|
include(dependency("net.kyori:adventure-nbt:4.9.1"))
|
|
}
|
|
relocate("com.zaxxer", "com.fastasyncworldedit.core.math") {
|
|
include(dependency("com.zaxxer:SparseBitSet:1.2"))
|
|
}
|
|
relocate("org.anarres", "com.fastasyncworldedit.core.internal.io") {
|
|
include(dependency("org.anarres:parallelgzip:1.0.5"))
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.named("assemble").configure {
|
|
dependsOn("shadowJar")
|
|
}
|