2023-09-11 12:08:40 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-09-11 12:08:40 +00:00
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-09-11 12:08:40 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-09-11 12:08:40 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation project(':third-party:parquet-floor')
|
|
|
|
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.bundles.parquet
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|