dbe9235f3a
... also move some common configuration into the root build.gradle-file. Support for JDK21 in lombok is a bit sketchy at the moment, but it seems to work. This upgrade is kind of important as the new index construction really benefits from Arena based lifecycle control over off-heap memory.
39 lines
739 B
Groovy
39 lines
739 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation project(':third-party:parquet-floor')
|
|
implementation project(':code:common:db')
|
|
implementation project(':code:common:linkdb')
|
|
|
|
implementation libs.notnull
|
|
implementation libs.trove
|
|
implementation libs.bundles.parquet
|
|
implementation libs.bundles.mariadb
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
task fastTests(type: Test) {
|
|
useJUnitPlatform {
|
|
excludeTags "slow"
|
|
}
|
|
}
|