2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-06 17:32:13 +00:00
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2023-03-06 17:32:13 +00:00
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.lz4
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|