vortex-parquet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.dfa1.vortex</groupId>
<artifactId>vortex-parquet</artifactId>
<version>0.13.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.dfa1.vortex</groupId> <artifactId>vortex-java</artifactId> <version>0.13.3</version> </parent> <artifactId>vortex-parquet</artifactId> <name>vortex-parquet</name> <description>Parquet conversion support for the Vortex columnar file format.</description> <dependencies> <!-- production --> <dependency> <groupId>io.github.dfa1.vortex</groupId> <artifactId>vortex-writer</artifactId> </dependency> <dependency> <groupId>dev.hardwood</groupId> <artifactId>hardwood-core</artifactId> </dependency> <dependency> <!-- Required by hardwood-core for ZSTD-compressed Parquet files; declared as optional upstream so we must pull it in explicitly. --> <groupId>com.github.luben</groupId> <artifactId>zstd-jni</artifactId> </dependency> <!-- testing --> <!-- project-internal test deps first: reader verifies the imported Vortex output. --> <dependency> <groupId>io.github.dfa1.vortex</groupId> <artifactId>vortex-reader</artifactId> <scope>test</scope> </dependency> <!-- reader declares the zstd bindings optional; pull it in so the test can decode ZSTD chunks --> <dependency> <groupId>io.github.dfa1.zstd</groupId> <artifactId>zstd</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> </project>