You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [latest version of parquet-format is 2.10.0](https://www.apache.org/dyn/closer.lua/parquet/apache-parquet-format-2.10.0/apache-parquet-format-2.10.0.tar.gz).
8
+
9
+
To [check the validity](https://www.apache.org/info/verification.html) of this release, use its:
The Parquet team publishes its [releases to Maven Central](https://search.maven.org/search?q=g:org.apache.parquet).
19
+
20
+
Add the following dependency section to your pom.xml:
21
+
```
22
+
<dependencies>
23
+
...
24
+
<dependency>
25
+
<groupId>org.apache.parquet</groupId>
26
+
<artifactId>parquet-format</artifactId>
27
+
<version>2.10.0</version> <!-- or latest version -->
28
+
</dependency>
29
+
...
30
+
</dependencies>
31
+
```
32
+
33
+
### Older Releases
34
+
35
+
Older releases can be found in the Archives of the Apache Software Foundation: [https://archive.apache.org/dist/parquet/](https://archive.apache.org/dist/parquet/)
0 commit comments