-
Notifications
You must be signed in to change notification settings - Fork 7
/
dependency-reduced-pom.xml
273 lines (273 loc) · 10.8 KB
/
dependency-reduced-pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cloudera.utils.hadoop</groupId>
<artifactId>hms-mirror</artifactId>
<name>hms-mirror</name>
<version>1.6.5.11-SNAPSHOT</version>
<url>https://github.com/cloudera-labs/hms_mirror</url>
<build>
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${maven.clean.version}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>${maven.install.version}</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.version}</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.version}</version>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven.reports.version}</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven.assembly.version}</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Apache-Hadoop-Version>${hadoop.version}</Apache-Hadoop-Version>
<Build-Timestamp>${maven.build.timestamp}</Build-Timestamp>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>full-shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>false</createSourcesJar>
<finalName>${project.artifactId}-shaded</finalName>
<shadedArtifactAttached>true</shadedArtifactAttached>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.INF</exclude>
<exclude>META-INF/LICENSE</exclude>
<exclude>META-INF/**/pom.xml</exclude>
<exclude>META-INF/**/pom.properties</exclude>
<exclude>org/apache/logging/log4j/core/lookup/JndiLookup.class</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer />
<transformer>
<mainClass>com.cloudera.utils.hadoop.hms.MirrorLegacy</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
<execution>
<id>shaded-no-hadoop</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>false</createSourcesJar>
<finalName>${project.artifactId}-shaded-no-hadoop</finalName>
<shadedArtifactAttached>true</shadedArtifactAttached>
<artifactSet>
<includes>
<include>com.jcabi:*</include>
<include>org.sonatype.jline:jline</include>
<include>commons-io:commons-io</include>
<include>org.apache.commons:commons-lang3</include>
<include>com.fasterxml.jackson.core:*</include>
<include>com.fasterxml.jackson.dataformat:*</include>
<include>org.yaml:snakeyaml</include>
<include>com.cloudera.utils.hadoop:*</include>
<include>com.cloudera.utils.hive:*</include>
<include>org.commonmark:*</include>
<include>org.apache.commons:commons-dbcp2</include>
<include>com.zaxxer:HikariCP</include>
<include>org.apache.commons:commons-pool2</include>
<include>commons-logging:commons-logging</include>
<include>javax.validation:validation-api</include>
</includes>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.INF</exclude>
<exclude>META-INF/LICENSE</exclude>
<exclude>META-INF/**/pom.xml</exclude>
<exclude>META-INF/**/pom.properties</exclude>
<exclude>org/apache/logging/log4j/core/lookup/JndiLookup.class</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/*.INF</exclude>
<exclude>META-INF/LICENSE</exclude>
<exclude>META-INF/**/pom.xml</exclude>
<exclude>META-INF/**/pom.properties</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer />
<transformer />
<transformer>
<mainClass>com.cloudera.utils.hadoop.hms.MirrorLegacy</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>cloudera</id>
<url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>1.7.36</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.5.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<commons-dbcp2.version>2.9.0</commons-dbcp2.version>
<hikari.version>4.0.3</hikari.version>
<jackson.version>2.13.5</jackson.version>
<maven.shade.plugin.version>3.5.0</maven.shade.plugin.version>
<postgresql.client.version>42.3.3</postgresql.client.version>
<junit.version>4.13.1</junit.version>
<maven.compiler.source>1.8</maven.compiler.source>
<hive-sre.version>2.5.1.4</hive-sre.version>
<mariadb.client.version>2.5.3</mariadb.client.version>
<commonmark.version>0.17.1</commonmark.version>
<oracle.client.version>12.1.0.2</oracle.client.version>
<hadoop-cli.version>2.4.3.3</hadoop-cli.version>
<slf4j-reload4j.version>1.7.36</slf4j-reload4j.version>
<maven.reports.version>3.0.0</maven.reports.version>
<maven.assembly.version>3.6.0</maven.assembly.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.site.version>3.7.1</maven.site.version>
<maven.clean.version>3.3.1</maven.clean.version>
<maven.surefire.version>3.1.2</maven.surefire.version>
<javax.validation.version>2.0.1.Final</javax.validation.version>
<maven.compiler.version>3.11.0</maven.compiler.version>
<maven.resources.version>3.3.1</maven.resources.version>
<maven.deploy.version>3.1.1</maven.deploy.version>
<maven.install.version>3.1.1</maven.install.version>
<maven.compiler.target>1.8</maven.compiler.target>
<commons-text.version>1.10.0</commons-text.version>
<logback-classic.version>1.2.12</logback-classic.version>
<maven.jar.version>3.3.0</maven.jar.version>
<jcabi.manifests.version>1.1</jcabi.manifests.version>
</properties>
</project>