1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!--
3+ ~ Licensed to the Apache Software Foundation (ASF) under one
4+ ~ or more contributor license agreements. See the NOTICE file
5+ ~ distributed with this work for additional information
6+ ~ regarding copyright ownership. The ASF licenses this file
7+ ~ to you under the Apache License, Version 2.0 (the
8+ ~ "License"); you may not use this file except in compliance
9+ ~ with the License. You may obtain a copy of the License at
10+ ~
11+ ~ http://www.apache.org/licenses/LICENSE-2.0
12+ ~
13+ ~ Unless required by applicable law or agreed to in writing, software
14+ ~ distributed under the License is distributed on an "AS IS" BASIS,
15+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ ~ See the License for the specific language governing permissions and
17+ ~ limitations under the License.
18+ -->
19+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
20+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
21+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
22+ <modelVersion >4.0.0</modelVersion >
23+
24+ <parent >
25+ <artifactId >paimon-filesystems</artifactId >
26+ <groupId >org.apache.paimon</groupId >
27+ <version >1.4-SNAPSHOT</version >
28+ </parent >
29+
30+ <artifactId >paimon-jindodls</artifactId >
31+ <name >Paimon : FileSystems : Jindo DLS</name >
32+ <packaging >jar</packaging >
33+
34+ <properties >
35+ <jindodata .version>6.9.1</jindodata .version>
36+ </properties >
37+
38+ <repositories >
39+ <repository >
40+ <id >jindodata</id >
41+ <url >https://jindodata-binary.oss-cn-shanghai.aliyuncs.com/mvn-repo/</url >
42+ </repository >
43+ </repositories >
44+
45+ <dependencies >
46+ <dependency >
47+ <groupId >org.apache.paimon</groupId >
48+ <artifactId >paimon-jindo</artifactId >
49+ <version >${project.version} </version >
50+ <scope >provided</scope >
51+ </dependency >
52+ <dependency >
53+ <groupId >org.apache.paimon</groupId >
54+ <artifactId >paimon-common</artifactId >
55+ <version >${project.version} </version >
56+ <scope >provided</scope >
57+ </dependency >
58+
59+ <dependency >
60+ <groupId >org.apache.hadoop</groupId >
61+ <artifactId >hadoop-common</artifactId >
62+ <version >${hadoop.version} </version >
63+ <scope >provided</scope >
64+ <exclusions >
65+ <exclusion >
66+ <groupId >*</groupId >
67+ <artifactId >*</artifactId >
68+ </exclusion >
69+ </exclusions >
70+ </dependency >
71+
72+ <dependency >
73+ <groupId >com.aliyun.jindodata</groupId >
74+ <artifactId >jindo-core</artifactId >
75+ <version >${jindodata.version} </version >
76+ <scope >provided</scope >
77+ <exclusions >
78+ <exclusion >
79+ <groupId >*</groupId >
80+ <artifactId >*</artifactId >
81+ </exclusion >
82+ </exclusions >
83+ </dependency >
84+
85+ <dependency >
86+ <groupId >com.aliyun.jindodata</groupId >
87+ <artifactId >jindo-sdk</artifactId >
88+ <version >${jindodata.version} </version >
89+ <scope >provided</scope >
90+ <exclusions >
91+ <exclusion >
92+ <groupId >*</groupId >
93+ <artifactId >*</artifactId >
94+ </exclusion >
95+ </exclusions >
96+ </dependency >
97+
98+ <dependency >
99+ <groupId >org.apache.hadoop</groupId >
100+ <artifactId >hadoop-hdfs-client</artifactId >
101+ <version >${hadoop.version} </version >
102+ <scope >test</scope >
103+ <exclusions >
104+ <exclusion >
105+ <groupId >org.apache.avro</groupId >
106+ <artifactId >avro</artifactId >
107+ </exclusion >
108+ <exclusion >
109+ <groupId >log4j</groupId >
110+ <artifactId >log4j</artifactId >
111+ </exclusion >
112+ <exclusion >
113+ <groupId >org.slf4j</groupId >
114+ <artifactId >slf4j-log4j12</artifactId >
115+ </exclusion >
116+ </exclusions >
117+ </dependency >
118+
119+ <dependency >
120+ <groupId >commons-collections</groupId >
121+ <artifactId >commons-collections</artifactId >
122+ <version >3.2.2</version >
123+ <scope >test</scope >
124+ </dependency >
125+
126+ <dependency >
127+ <groupId >commons-logging</groupId >
128+ <artifactId >commons-logging</artifactId >
129+ <version >1.1.3</version >
130+ <scope >test</scope >
131+ </dependency >
132+
133+ <dependency >
134+ <groupId >org.apache.hadoop</groupId >
135+ <artifactId >hadoop-hdfs</artifactId >
136+ <version >${hadoop.version} </version >
137+ <scope >test</scope >
138+ <type >test-jar</type >
139+ <exclusions >
140+ <exclusion >
141+ <groupId >log4j</groupId >
142+ <artifactId >log4j</artifactId >
143+ </exclusion >
144+ <exclusion >
145+ <groupId >ch.qos.reload4j</groupId >
146+ <artifactId >reload4j</artifactId >
147+ </exclusion >
148+ <exclusion >
149+ <groupId >org.slf4j</groupId >
150+ <artifactId >slf4j-reload4j</artifactId >
151+ </exclusion >
152+ </exclusions >
153+ </dependency >
154+
155+ <dependency >
156+ <groupId >org.apache.hadoop</groupId >
157+ <artifactId >hadoop-common</artifactId >
158+ <scope >test</scope >
159+ <type >test-jar</type >
160+ <version >${hadoop.version} </version ><!-- $NO-MVN-MAN-VER$-->
161+ <exclusions >
162+ <exclusion >
163+ <groupId >log4j</groupId >
164+ <artifactId >log4j</artifactId >
165+ </exclusion >
166+ <exclusion >
167+ <groupId >org.slf4j</groupId >
168+ <artifactId >slf4j-log4j12</artifactId >
169+ </exclusion >
170+ <exclusion >
171+ <!-- This dependency is no longer shipped with the JDK since Java 9.-->
172+ <groupId >jdk.tools</groupId >
173+ <artifactId >jdk.tools</artifactId >
174+ </exclusion >
175+ <exclusion >
176+ <groupId >ch.qos.reload4j</groupId >
177+ <artifactId >reload4j</artifactId >
178+ </exclusion >
179+ <exclusion >
180+ <groupId >org.slf4j</groupId >
181+ <artifactId >slf4j-reload4j</artifactId >
182+ </exclusion >
183+ </exclusions >
184+ </dependency >
185+ </dependencies >
186+ </project >
0 commit comments