perf: 优化性能

This commit is contained in:
2023-06-01 09:04:44 +08:00
parent 503ba16c6e
commit 0ca763ebdb
9 changed files with 21 additions and 24 deletions

View File

@@ -3,12 +3,17 @@ setArchivesBaseName("HamsterBall-Bukkit")
evaluationDependsOn(':hamster-ball-common')
dependencies {
apiShade(project(":hamster-ball-common")) { transitive = false }
apiShade project(":hamster-ball-common") transitive false
compileOnly 'org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT'
//noinspection VulnerableLibrariesLocal
compileOnly 'org.spigotmc:spigot-api:1.19.4-R0.1-SNAPSHOT'
// https://mvnrepository.com/artifact/io.netty/netty-all
//noinspection GradlePackageUpdate
shade 'io.netty:netty-all:4.1.86.Final'
compileOnly "cn.hamster3.mc.plugin.core:bukkit:${hamster_core_version}"
compileOnly("me.clip:placeholderapi:2.11.2") { transitive = false }
compileOnly "me.clip:placeholderapi:2.11.2" transitive false
}
processResources {