31 lines
572 B
Groovy
31 lines
572 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.commons.lang3
|
||
|
implementation libs.fastutil
|
||
|
implementation libs.lz4
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|