2023-07-30 16:00:37 +02:00
|
|
|
plugins {
|
2023-07-30 17:04:46 +02:00
|
|
|
id("lighteco.platform-logic")
|
2023-07-30 16:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2023-07-30 17:04:46 +02:00
|
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
2023-08-27 23:23:42 +02:00
|
|
|
maven("https://repo.extendedclip.com/content/repositories/placeholderapi")
|
2023-07-30 16:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-07-30 21:25:07 +02:00
|
|
|
implementation(project(":lighteco-common"))
|
|
|
|
|
2023-08-26 11:57:08 +02:00
|
|
|
implementation("dev.jorel:commandapi-bukkit-shade:9.1.0")
|
2023-08-26 16:45:04 +02:00
|
|
|
implementation("net.kyori:adventure-platform-bukkit:4.2.0")
|
2023-08-26 11:57:08 +02:00
|
|
|
|
2023-07-30 17:04:46 +02:00
|
|
|
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
|
2023-07-30 21:25:07 +02:00
|
|
|
|
2023-08-27 23:23:42 +02:00
|
|
|
// PlaceholderAPI
|
|
|
|
compileOnly("me.clip:placeholderapi:2.11.3")
|
|
|
|
|
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-08-26 11:57:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.shadowJar {
|
|
|
|
relocate("dev.jorel.commandapi", "dev.xhyrom.lighteco.libraries.commandapi")
|
2023-07-30 16:00:37 +02:00
|
|
|
}
|