1
0
Fork 0
mirror of https://github.com/xHyroM/lighteco.git synced 2024-09-20 05:13:18 +02:00
lighteco/common/build.gradle.kts

28 lines
884 B
Text
Raw Normal View History

2023-07-30 16:00:37 +02:00
plugins {
2023-07-30 17:04:46 +02:00
id("lighteco.shadow-logic")
}
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") {
exclude(module = "adventure-bom")
exclude(module = "adventure-api")
}
2023-08-28 20:40:47 +02:00
api("com.google.guava:guava:32.1.2-jre")
2023-08-28 16:53:48 +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")
compileOnly("com.zaxxer:HikariCP:5.0.1")
2023-08-28 11:24:05 +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
}