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+ <groupId >org.apache.pypaimon</groupId >
25+ <artifactId >hadoop-deps</artifactId >
26+ <version >3.3.4</version >
27+
28+ <properties >
29+ <hadoop .version>3.3.4</hadoop .version>
30+ </properties >
31+
32+ <dependencies >
33+ <dependency >
34+ <groupId >org.apache.hadoop</groupId >
35+ <artifactId >hadoop-common</artifactId >
36+ <version >${hadoop.version} </version >
37+ </dependency >
38+ <dependency >
39+ <groupId >org.apache.hadoop</groupId >
40+ <artifactId >hadoop-hdfs-client</artifactId >
41+ <version >${hadoop.version} </version >
42+ </dependency >
43+ </dependencies >
44+
45+ <build >
46+ <plugins >
47+ <plugin >
48+ <groupId >org.apache.maven.plugins</groupId >
49+ <artifactId >maven-shade-plugin</artifactId >
50+ <executions >
51+ <execution >
52+ <phase >package</phase >
53+ <goals >
54+ <goal >shade</goal >
55+ </goals >
56+ <configuration >
57+ <createDependencyReducedPom >false</createDependencyReducedPom >
58+ <transformers >
59+ <transformer implementation =" org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
60+ </transformers >
61+ </configuration >
62+ </execution >
63+ </executions >
64+ </plugin >
65+ </plugins >
66+ </build >
67+ </project >
0 commit comments