31 lines
535 B
Groovy
31 lines
535 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':third-party')
|
|
|
|
|
|
implementation libs.lombok
|
|
annotationProcessor libs.lombok
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.notnull
|
|
implementation libs.lz4
|
|
implementation libs.fastutil
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|