CatgirlIntelligenceAgency/third-party/parquet-floor/build.gradle
Viktor Lofgren a284682deb (parquet) Add parquet library
This small library, while great, will require some modifications to fit the project's needs, so it goes into third-party directly.
2023-09-05 10:38:51 +02:00

21 lines
360 B
Groovy

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