2023-07-30 16:00:37 +02:00
|
|
|
plugins {
|
2023-07-30 17:04:46 +02:00
|
|
|
id("lighteco.shadow-logic")
|
2023-07-30 21:25:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":lighteco-api"))
|
2023-08-26 16:45:04 +02:00
|
|
|
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")
|
2023-07-30 21:25:07 +02:00
|
|
|
|
2023-08-26 10:44:38 +02:00
|
|
|
implementation("eu.okaeri:okaeri-configs-yaml-snakeyaml:5.0.0-beta.5")
|
|
|
|
implementation("eu.okaeri:okaeri-configs-validator-okaeri:5.0.0-beta.5")
|
2023-08-04 16:43:55 +02:00
|
|
|
|
2023-08-28 11:24:05 +02:00
|
|
|
implementation("com.zaxxer:HikariCP:5.0.1")
|
|
|
|
|
2023-07-30 21:25:07 +02:00
|
|
|
compileOnly("org.projectlombok:lombok:1.18.28")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
|
|
|
|
|
|
|
compileOnly("org.checkerframework:checker-qual:3.8.0")
|
|
|
|
compileOnly("org.jetbrains:annotations:20.1.0")
|
2023-07-30 16:00:37 +02:00
|
|
|
}
|