CatgirlIntelligenceAgency/code/libraries/random-write-funnel/build.gradle

25 lines
397 B
Groovy
Raw Normal View History

2023-03-04 13:19:01 +01:00
plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2023-03-04 13:19:01 +01:00
}
}
2023-03-06 18:32:13 +01:00
2023-03-04 13:19:01 +01:00
dependencies {
2023-03-06 18:32:13 +01:00
2023-03-04 13:19:01 +01:00
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.slf4j
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
test {
useJUnitPlatform()
}