CustomMobs/build.gradle.kts
2024-10-18 17:49:49 +02:00

26 lines
655 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")
}
tasks.test {
useJUnitPlatform()
}