mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-10 01:18:07 +01:00
Jozef Steinhübl
23e73cb5da
* feat: better command abstraction * feat: OfflineUserArgument type * feat: balance, balance other cmds in common & double, integer arg * feat: command manager, better arguments abstraction * feat: map args * feat: some things * feat(better command abstraction)!: switch to brigadier (#8) * feat: switch to brigadier * some updates * feat: make suggestion provider work * supress warnings * feat: pay & set command * feat: give & take command, better suggestions, permissions * refactor: cleanup * fix: dont register pay if currency is not payable * fix: send commands only if you have perms * make second test currency not payable * feat: use command's description & name * refactor: cleanup, rename bukkit to paper * refactor: cleanup, rename bukkit to paper * feat: add built-in info command * ci: build paper, not bukkit * refactor: better test organization * refactor: better test organization * feat: locks * feat: finish locking * feat: handle missing user * refactor: move methods to CommandHelper * refactor: change minimum api version * feat: console support
31 lines
No EOL
969 B
Text
31 lines
No EOL
969 B
Text
plugins {
|
|
id("lighteco.shadow-logic")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":lighteco-api"))
|
|
api("org.checkerframework:checker-qual:3.8.0")
|
|
api("net.kyori:adventure-api:4.12.0") {
|
|
exclude(module = "adventure-bom")
|
|
exclude(module = "checker-qual")
|
|
exclude(module = "annotations")
|
|
}
|
|
api("net.kyori:adventure-text-minimessage:4.14.0") {
|
|
exclude(module = "adventure-bom")
|
|
exclude(module = "adventure-api")
|
|
}
|
|
api("com.google.guava:guava:32.1.2-jre")
|
|
|
|
implementation("eu.okaeri:okaeri-configs-yaml-snakeyaml:5.0.0-beta.5")
|
|
implementation("eu.okaeri:okaeri-configs-validator-okaeri:5.0.0-beta.5")
|
|
|
|
compileOnly("com.mojang:brigadier:1.0.18")
|
|
|
|
compileOnly("com.zaxxer:HikariCP:5.0.1")
|
|
compileOnly("redis.clients:jedis:5.1.0")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.28")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
|
|
|
compileOnly("org.jetbrains:annotations:20.1.0")
|
|
} |