Skip to content

Commit 868da25

Browse files
committed
apacheGH-3004: Add Parquet BOM
1 parent fafd9b0 commit 868da25

File tree

2 files changed

+157
-0
lines changed

2 files changed

+157
-0
lines changed

parquet-bom/pom.xml

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
<!--
2+
~ Licensed to the Apache Software Foundation (ASF) under one
3+
~ or more contributor license agreements. See the NOTICE file
4+
~ distributed with this work for additional information
5+
~ regarding copyright ownership. The ASF licenses this file
6+
~ to you under the Apache License, Version 2.0 (the
7+
~ "License"); you may not use this file except in compliance
8+
~ with the License. You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing,
13+
~ software distributed under the License is distributed on an
14+
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
~ KIND, either express or implied. See the License for the
16+
~ specific language governing permissions and limitations
17+
~ under the License.
18+
-->
19+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
23+
<parent>
24+
<groupId>org.apache</groupId>
25+
<artifactId>apache</artifactId>
26+
<version>32</version>
27+
</parent>
28+
<groupId>org.apache.parquet</groupId>
29+
<artifactId>parquet-bom</artifactId>
30+
<version>1.15.0-SNAPSHOT</version>
31+
32+
<name>Apache Parquet Bill Of Materials</name>
33+
<url>https://parquet.apache.org</url>
34+
<description>Parquet is a columnar storage format that supports nested data. This provides the java implementation.</description>
35+
36+
<scm>
37+
<connection>scm:git:[email protected]:apache/parquet-mr.git</connection>
38+
<url>scm:git:[email protected]:apache/parquet-mr.git</url>
39+
<developerConnection>scm:git:[email protected]:apache/parquet-mr.git</developerConnection>
40+
<tag>HEAD</tag>
41+
</scm>
42+
43+
<licenses>
44+
<license>
45+
<name>The Apache Software License, Version 2.0</name>
46+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
47+
</license>
48+
</licenses>
49+
50+
<issueManagement>
51+
<system>JIRA</system>
52+
<url>https://issues.apache.org/jira/browse/PARQUET</url>
53+
</issueManagement>
54+
55+
<mailingLists>
56+
<mailingList>
57+
<name>Dev Mailing List</name>
58+
<post>[email protected]</post>
59+
<subscribe>[email protected]</subscribe>
60+
<unsubscribe>[email protected]</unsubscribe>
61+
</mailingList>
62+
<mailingList>
63+
<name>Commits Mailing List</name>
64+
<post>[email protected]</post>
65+
<subscribe>[email protected]</subscribe>
66+
<unsubscribe>[email protected]</unsubscribe>
67+
</mailingList>
68+
</mailingLists>
69+
70+
<dependencyManagement>
71+
<dependencies>
72+
<dependency>
73+
<groupId>org.apache.parquet</groupId>
74+
<artifactId>parquet-arrow</artifactId>
75+
<version>${project.version}</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.apache.parquet</groupId>
79+
<artifactId>parquet-avro</artifactId>
80+
<version>${project.version}</version>
81+
</dependency>
82+
<!--skip benchmarks module-->
83+
<dependency>
84+
<groupId>org.apache.parquet</groupId>
85+
<artifactId>parquet-cli</artifactId>
86+
<version>${project.version}</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>org.apache.parquet</groupId>
90+
<artifactId>parquet-column</artifactId>
91+
<version>${project.version}</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.apache.parquet</groupId>
95+
<artifactId>parquet-common</artifactId>
96+
<version>${project.version}</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.apache.parquet</groupId>
100+
<artifactId>parquet-encoding</artifactId>
101+
<version>${project.version}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.apache.parquet</groupId>
105+
<artifactId>parquet-format-structures</artifactId>
106+
<version>${project.version}</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.apache.parquet</groupId>
110+
<artifactId>parquet-generator</artifactId>
111+
<version>${project.version}</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.apache.parquet</groupId>
115+
<artifactId>parquet-hadoop</artifactId>
116+
<version>${project.version}</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.apache.parquet</groupId>
120+
<artifactId>parquet-hadoop-bundle</artifactId>
121+
<version>${project.version}</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>org.apache.parquet</groupId>
125+
<artifactId>parquet-jackson</artifactId>
126+
<version>${project.version}</version>
127+
</dependency>
128+
<dependency>
129+
<groupId>org.apache.parquet</groupId>
130+
<artifactId>parquet-pig</artifactId>
131+
<version>${project.version}</version>
132+
</dependency>
133+
<dependency>
134+
<groupId>org.apache.parquet</groupId>
135+
<artifactId>parquet-pig-bundle</artifactId>
136+
<version>${project.version}</version>
137+
</dependency>
138+
<dependency>
139+
<groupId>org.apache.parquet</groupId>
140+
<artifactId>parquet-protobuf</artifactId>
141+
<version>${project.version}</version>
142+
</dependency>
143+
<dependency>
144+
<groupId>org.apache.parquet</groupId>
145+
<artifactId>parquet-scala</artifactId>
146+
<version>${project.version}</version>
147+
</dependency>
148+
<dependency>
149+
<groupId>org.apache.parquet</groupId>
150+
<artifactId>parquet-thrift</artifactId>
151+
<version>${project.version}</version>
152+
</dependency>
153+
</dependencies>
154+
</dependencyManagement>
155+
156+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
<module>parquet-scala</module>
151151
<module>parquet-thrift</module>
152152
<module>parquet-hadoop-bundle</module>
153+
<module>parquet-bom</module>
153154
</modules>
154155

155156
<dependencies>

0 commit comments

Comments
 (0)