|
| 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="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/xsd/maven-4.0.0.xsd"> |
| 20 | + <parent> |
| 21 | + <groupId>org.apache.parquet</groupId> |
| 22 | + <artifactId>parquet</artifactId> |
| 23 | + <relativePath>../pom.xml</relativePath> |
| 24 | + <version>1.16.0-SNAPSHOT</version> |
| 25 | + </parent> |
| 26 | + |
| 27 | + <modelVersion>4.0.0</modelVersion> |
| 28 | + |
| 29 | + <artifactId>parquet-variant</artifactId> |
| 30 | + <packaging>jar</packaging> |
| 31 | + |
| 32 | + <name>Apache Parquet Variant</name> |
| 33 | + <url>https://parquet.apache.org</url> |
| 34 | + |
| 35 | + <properties> |
| 36 | + </properties> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>org.apache.parquet</groupId> |
| 41 | + <artifactId>parquet-cli</artifactId> |
| 42 | + <version>${project.version}</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.apache.parquet</groupId> |
| 46 | + <artifactId>parquet-jackson</artifactId> |
| 47 | + <version>${project.version}</version> |
| 48 | + <scope>runtime</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>${jackson.groupId}</groupId> |
| 52 | + <artifactId>jackson-core</artifactId> |
| 53 | + <version>${jackson.version}</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>${jackson.groupId}</groupId> |
| 57 | + <artifactId>jackson-databind</artifactId> |
| 58 | + <version>${jackson-databind.version}</version> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.guava</groupId> |
| 63 | + <artifactId>guava</artifactId> |
| 64 | + <version>${guava.version}</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.slf4j</groupId> |
| 69 | + <artifactId>slf4j-api</artifactId> |
| 70 | + <version>${slf4j.version}</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + </dependencies> |
| 74 | + |
| 75 | + <build> |
| 76 | + <plugins> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-jar-plugin</artifactId> |
| 80 | + </plugin> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-shade-plugin</artifactId> |
| 84 | + </plugin> |
| 85 | + </plugins> |
| 86 | + </build> |
| 87 | + |
| 88 | +</project> |
0 commit comments