parquet-format
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.parquet</groupId> <artifactId>parquet-format</artifactId> <version>2.11.0</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"> <parent> <artifactId>apache</artifactId> <groupId>org.apache</groupId> <version>33</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.parquet</groupId> <artifactId>parquet-format</artifactId> <name>Apache Parquet Format</name> <version>2.11.0</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> <issueManagement> <system>GitHub</system> <url>https://github.com/apache/parquet-format/issues</url> </issueManagement> <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> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:apache/parquet-format.git</connection> <developerConnection>scm:git:git@github.com:apache/parquet-format.git</developerConnection> <tag>apache-parquet-format-2.11.0-rc0</tag> <url>scm:git:git@github.com:apache/parquet-format.git</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.thrift</groupId> <artifactId>thrift-maven-plugin</artifactId> <version>${thrift-maven-plugin.version}</version> <executions> <execution> <id>thrift-sources</id> <phase>generate-sources</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <thriftSourceRoot>src/main/thrift</thriftSourceRoot> <thriftExecutable>${thrift.executable}</thriftExecutable> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>source-release-assembly</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <additionalOptions>-Xdoclint:none</additionalOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.apache.thrift:libthrift</include> </includes> </artifactSet> <filters> <filter> <artifact>org.apache.thrift:libthrift</artifact> <excludes> <exclude>**/*.java</exclude> <exclude>META-INF/LICENSE.txt</exclude> <exclude>META-INF/NOTICE.txt</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.thrift</pattern> <shadedPattern>${shade.prefix}.org.apache.thrift</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.16.1</version> <executions> <execution> <phase>test</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <consoleOutput>true</consoleOutput> <excludes> <exclude>.github/PULL_REQUEST_TEMPLATE.md</exclude> <exclude>**/*.avro</exclude> <exclude>**/*.avsc</exclude> <exclude>**/*.avdl</exclude> <exclude>**/*.iml</exclude> <exclude>**/*.log</exclude> <exclude>**/*.md.vm</exclude> <exclude>**/.classpath</exclude> <exclude>**/.project</exclude> <exclude>**/.settings/**</exclude> <exclude>**/build/**</exclude> <exclude>**/target/**</exclude> <exclude>.git/**</exclude> <exclude>.idea/**</exclude> <exclude>*/jdiff/*.xml</exclude> <exclude>licenses/**</exclude> <exclude>thrift-${thrift.version}/**</exclude> <exclude>thrift-${thrift.version}.tar.gz</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>jdk9+</id> <properties> <maven.compiler.release>8</maven.compiler.release> </properties> </profile> <profile> <id>UnixClassOS</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>check-thrift-version</id> <phase>generate-sources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>sh</executable> <workingDirectory>${basedir}</workingDirectory> <arguments> <argument>-c</argument> <argument>${thrift.executable} -version | fgrep 'Thrift version ${thrift.version}' && exit 0; echo "================================================================================="; echo "========== [FATAL] Build is configured to require Thrift version ${thrift.version} =========="; echo -n "========== Currently installed: "; ${thrift.executable} -version; echo "================================================================================="; exit 1</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <thrift.version>0.21.0</thrift.version> <thrift-maven-plugin.version>0.10.0</thrift-maven-plugin.version> <shade.prefix>shaded.parquet</shade.prefix> <maven.compiler.source>1.8</maven.compiler.source> <thrift.executable>thrift</thrift.executable> <maven.compiler.target>1.8</maven.compiler.target> </properties> </project>