parquet-column
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.intel.qat</groupId> <artifactId>parquet-column</artifactId> <version>1.10.1</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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.intel.qat</groupId> <artifactId>parquet-column</artifactId> <name>Apache Parquet Column</name> <version>1.10.1</version> <description>Parquet is a columnar storage format that supports nested data. This provides all generated metadata code.</description> <url>https://parquet.apache.org</url> <mailingLists> <mailingList> <name>Dev Mailing List</name> <subscribe>dev-subscribe@parquet.apache.org</subscribe> <unsubscribe>dev-unsubscribe@parquet.apache.org</unsubscribe> <post>dev@parquet.apache.org</post> </mailingList> <mailingList> <name>Commits Mailing List</name> <subscribe>commits-subscribe@parquet.apache.org</subscribe> <unsubscribe>commits-unsubscribe@parquet.apache.org</unsubscribe> <post>commits@parquet.apache.org</post> </mailingList> </mailingLists> <developers> <developer> <name>Julien Le Dem</name> <email>julien@twitter.com</email> </developer> <developer> <name>xieqi</name> <email>qi.xie@intel.com</email> <url>https://github.com/xieqi</url> </developer> <developer> <name>xucheng</name> <email>cheng.a.xu@intel.com</email> <url>https://github.com/winningsix</url> </developer> <developer> <name>zhangjie</name> <email>jie1.zhang@intel.com</email> <url>https://github.com/ZJie1</url> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:apache/parquet-mr.git</connection> <developerConnection>scm:git:https://github.com/apache/parquet-mr.git</developerConnection> <tag>apache-parquet-1.10.1</tag> <url>scm:git:git@github.com:apache/parquet-mr.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>true</minimizeJar> <artifactSet> <includes> <include>it.unimi.dsi:fastutil</include> </includes> </artifactSet> <relocations> <relocation> <pattern>it.unimi.dsi</pattern> <shadedPattern>org.apache.parquet.it.unimi.dsi</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-generator</artifactId> <version>${project.version}</version> </dependency> </dependencies> <configuration> <mainClass>org.apache.parquet.filter2.Generator</mainClass> <includePluginDependencies>true</includePluginDependencies> <arguments> <argument>${basedir}/target/generated-src</argument> </arguments> <sourceRoot>${basedir}/target/generated-src</sourceRoot> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>jitpack.io</id> <name>Jitpack.io repository</name> <url>https://jitpack.io</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-common</artifactId> <version>1.10.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-encoding</artifactId> <version>1.10.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-encoding</artifactId> <version>1.10.1</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.carrotsearch</groupId> <artifactId>junit-benchmarks</artifactId> <version>0.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.193</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.22</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>20.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven.compiler.target>${targetJavaVersion}</maven.compiler.target> <pig.version>0.16.0</pig.version> <semver.api.version>0.9.33</semver.api.version> <avro.version>1.8.2</avro.version> <jackson.groupId>org.codehaus.jackson</jackson.groupId> <brotli-codec.version>0.1.1</brotli-codec.version> <jcommander.version>1.35</jcommander.version> <jackson.version>1.9.13</jackson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <hadoop1.version>1.2.1</hadoop1.version> <mockito.version>1.10.19</mockito.version> <hadoop.version>2.7.3</hadoop.version> <jackson2.version>2.3.1</jackson2.version> <maven.compiler.source>1.8</maven.compiler.source> <pig.classifier>h2</pig.classifier> <fastutil.version>7.0.13</fastutil.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version> <opencsv.version>2.3</opencsv.version> <previous.version>1.7.0</previous.version> <thrift-maven-plugin.version>0.10.0</thrift-maven-plugin.version> <scala.version>2.10.6</scala.version> <jackson.package>org.codehaus.jackson</jackson.package> <github.global.server>github</github.global.server> <scala.maven.test.skip>false</scala.maven.test.skip> <commons-codec.version>1.10</commons-codec.version> <scala.binary.version>2.10</scala.binary.version> <cascading.version>2.7.1</cascading.version> <QAT.compression.codec.version>2.3.0</QAT.compression.codec.version> <slf4j.version>1.7.22</slf4j.version> <thrift.executable>thrift</thrift.executable> <shade.prefix>shaded.parquet</shade.prefix> <thrift.version>0.9.3</thrift.version> <guava.version>20.0</guava.version> <parquet.format.version>2.4.0</parquet.format.version> <targetJavaVersion>1.8</targetJavaVersion> <cascading3.version>3.1.2</cascading3.version> </properties> </project>