Skip to content

Commit 97f08c4

Browse files
author
fcbai
committed
add all the dependencies.
1 parent dfe4112 commit 97f08c4

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

pom.xml

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.fcbai.parquet</groupId>
8+
<artifactId>parquet-java-sdk</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<name>parquet-java-sdk</name>
12+
<url>http://www.baifachuan.com</url>
13+
14+
<properties>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
<maven.compiler.source>1.8</maven.compiler.source>
17+
<maven.compiler.target>1.8</maven.compiler.target>
18+
</properties>
19+
20+
<dependencies>
21+
22+
<dependency>
23+
<groupId>com.alibaba</groupId>
24+
<artifactId>fastjson</artifactId>
25+
<version>1.2.78</version>
26+
</dependency>
27+
28+
<dependency>
29+
<groupId>org.apache.hadoop</groupId>
30+
<artifactId>hadoop-mapreduce-client-core</artifactId>
31+
<version>3.3.1</version>
32+
</dependency>
33+
34+
<dependency>
35+
<groupId>org.apache.parquet</groupId>
36+
<artifactId>parquet-tools</artifactId>
37+
<version>1.11.2</version>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>org.apache.parquet</groupId>
42+
<artifactId>parquet-avro</artifactId>
43+
<version>1.12.1</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.apache.avro</groupId>
47+
<artifactId>avro</artifactId>
48+
<version>1.11.0</version>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>com.google.code.gson</groupId>
53+
<artifactId>gson</artifactId>
54+
<version>2.8.8</version>
55+
</dependency>
56+
57+
<dependency>
58+
<groupId>org.apache.hadoop</groupId>
59+
<artifactId>hadoop-common</artifactId>
60+
<version>3.3.1</version>
61+
</dependency>
62+
63+
<dependency>
64+
<groupId>junit</groupId>
65+
<artifactId>junit</artifactId>
66+
<version>4.13.2</version>
67+
<scope>test</scope>
68+
</dependency>
69+
</dependencies>
70+
71+
<build>
72+
<finalName>parquet-java-sdk</finalName>
73+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
74+
<plugins>
75+
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
76+
<plugin>
77+
<artifactId>maven-clean-plugin</artifactId>
78+
<version>3.1.0</version>
79+
</plugin>
80+
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
81+
<plugin>
82+
<artifactId>maven-resources-plugin</artifactId>
83+
<version>3.0.2</version>
84+
</plugin>
85+
<plugin>
86+
<artifactId>maven-compiler-plugin</artifactId>
87+
<version>3.8.0</version>
88+
</plugin>
89+
<plugin>
90+
<artifactId>maven-surefire-plugin</artifactId>
91+
<version>2.22.1</version>
92+
</plugin>
93+
<plugin>
94+
<artifactId>maven-jar-plugin</artifactId>
95+
<version>3.0.2</version>
96+
</plugin>
97+
<plugin>
98+
<artifactId>maven-install-plugin</artifactId>
99+
<version>2.5.2</version>
100+
</plugin>
101+
<plugin>
102+
<artifactId>maven-deploy-plugin</artifactId>
103+
<version>2.8.2</version>
104+
</plugin>
105+
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
106+
<plugin>
107+
<artifactId>maven-site-plugin</artifactId>
108+
<version>3.7.1</version>
109+
</plugin>
110+
<plugin>
111+
<artifactId>maven-project-info-reports-plugin</artifactId>
112+
<version>3.0.0</version>
113+
</plugin>
114+
</plugins>
115+
</pluginManagement>
116+
</build>
117+
</project>

0 commit comments

Comments
 (0)