MarginaliaSearch/third-party/parquet-floor/build.gradle
Viktor Lofgren fe8d583fdd (sys) Upgrade to JDK22
This also entails upgrading JIB to 3.4.1 and Lombok to 1.18.32.
2024-03-21 14:27:13 +01:00

26 lines
453 B
Groovy

plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(22))
}
}
dependencies {
implementation ('org.apache.parquet:parquet-column:1.13.1') {
transitive = true
}
implementation('org.apache.parquet:parquet-hadoop:1.13.1') {
exclude group: 'commons-pool', module: 'commons-pool'
transitive = true
}
implementation libs.trove
}
test {
useJUnitPlatform()
}