mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-10 01:18:07 +01:00
Jozef Steinhübl
35eebc1609
* 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
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")
|
|
} |