2023-09-05 08:38:51 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-09-05 08:38:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-06-12 06:57:22 +00:00
|
|
|
implementation ('org.apache.parquet:parquet-column:1.14.0') {
|
2023-09-11 07:02:58 +00:00
|
|
|
transitive = true
|
|
|
|
}
|
2023-09-05 08:38:51 +00:00
|
|
|
implementation('org.apache.parquet:parquet-hadoop:1.13.1') {
|
|
|
|
exclude group: 'commons-pool', module: 'commons-pool'
|
2023-09-11 07:02:58 +00:00
|
|
|
transitive = true
|
2023-09-05 08:38:51 +00:00
|
|
|
}
|
2023-09-13 13:56:35 +00:00
|
|
|
|
|
|
|
implementation libs.trove
|
2023-09-05 08:38:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|