Halloween2024/build.gradle.kts
2024-10-20 19:05:26 +02:00

28 lines
719 B
Plaintext

plugins {
id("java")
}
group = "com.alttd.custommobs"
version = "1.0-SNAPSHOT"
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
isChanging = true
}
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
implementation("org.apache.logging.log4j:log4j-api:2.23.1")
implementation("org.apache.logging.log4j:log4j-core:2.23.1")
implementation("org.reflections:reflections:0.10.2")
implementation("com.comphenix.protocol:ProtocolLib:5.1.0")
}
tasks.test {
useJUnitPlatform()
}