feat(hamster-ball-bridge): 添加查看玩家信息和服务器信息的指令

This commit is contained in:
2023-02-06 22:13:54 +08:00
parent 78de3e576c
commit 325c892039
7 changed files with 191 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
version = '1.0.1'
version = '1.1.0'
setArchivesBaseName("HamsterBall-Bridge")
dependencies {
@@ -6,7 +6,7 @@ dependencies {
compileOnly 'net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT'
compileOnly "cn.hamster3.mc.plugin.ball:common:${hamster_ball_version}"
compileOnly "cn.hamster3.mc.plugin.core:common:${hamster_core_version}"
compileOnly "cn.hamster3.mc.plugin.core:bukkit:${hamster_core_version}"
compileOnly "me.clip:placeholderapi:${placeholder_api_version}"
}
@@ -18,3 +18,10 @@ processResources {
}
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
// withJavadocJar()
withSourcesJar()
}