28 lines
463 B
Groovy
28 lines
463 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion.set(JavaLanguageVersion.of(20))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation libs.lombok
|
||
|
annotationProcessor libs.lombok
|
||
|
implementation libs.bundles.slf4j
|
||
|
|
||
|
implementation libs.notnull
|
||
|
|
||
|
implementation libs.fastutil
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|