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

@@ -31,11 +31,11 @@ subprojects {
compileOnly 'org.jetbrains:annotations:23.0.0'
}
tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.setEncoding("UTF-8")
}
tasks.withType(Jar) {
tasks.withType(Jar).configureEach {
from([rootProject.file("LICENSE")])
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}
@@ -46,6 +46,7 @@ subprojects {
// withJavadocJar()
withSourcesJar()
}
jar {
destinationDir(rootProject.buildDir)
}