mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2025-04-20 17:47:06 +00:00
61 lines
1.9 KiB
Plaintext
61 lines
1.9 KiB
Plaintext
plugins {
|
|
`java-library`
|
|
`maven-publish`
|
|
id("com.github.johnrengelman.shadow") version "8.1.1"
|
|
id("xyz.jpenilla.run-waterfall") version "2.0.0"
|
|
}
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } // bungeecord
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":RedisBungee-API")) {
|
|
exclude("com.google.guava", "guava")
|
|
exclude("com.google.code.gson", "gson")
|
|
}
|
|
compileOnly("net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
description = "RedisBungee Bungeecord implementation"
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
}
|
|
|
|
tasks {
|
|
runWaterfall {
|
|
waterfallVersion("1.19")
|
|
}
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release.set(8)
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
filesMatching("plugin.yml") {
|
|
filter {
|
|
it.replace("*{redisbungee.version}*", "$version", false)
|
|
}
|
|
}
|
|
|
|
}
|
|
shadowJar {
|
|
relocate("redis.clients.jedis", "com.imaginarycode.minecraft.redisbungee.internal.jedis")
|
|
relocate("redis.clients.util", "com.imaginarycode.minecraft.redisbungee.internal.jedisutil")
|
|
relocate("org.apache.commons.pool", "com.imaginarycode.minecraft.redisbungee.internal.commonspool")
|
|
relocate("com.squareup.okhttp", "com.imaginarycode.minecraft.redisbungee.internal.okhttp")
|
|
relocate("okio", "com.imaginarycode.minecraft.redisbungee.internal.okio")
|
|
relocate("org.json", "com.imaginarycode.minecraft.redisbungee.internal.json")
|
|
|
|
// configurate shade
|
|
relocate("ninja.leaping.configurate", "com.imaginarycode.minecraft.redisbungee.internal.configurate")
|
|
relocate("org.yaml", "com.imaginarycode.minecraft.redisbungee.internal.yml")
|
|
}
|
|
} |