24 lines
422 B
Groovy
24 lines
422 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(20))
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|