Skip to content

Commit 4815e8e

Browse files
committed
more dependencies explicitly excluded for SBT build
1 parent a535b0a commit 4815e8e

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed

pom.xml

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,6 +1759,14 @@
17591759
<version>${hive.version}</version>
17601760
<scope>${hive.deps.scope}</scope>
17611761
<exclusions>
1762+
<exclusion>
1763+
<groupId>org.apache.tez</groupId>
1764+
<artifactId>tez-api</artifactId>
1765+
</exclusion>
1766+
<exclusion>
1767+
<groupId>com.github.joshelser</groupId>
1768+
<artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
1769+
</exclusion>
17621770
<exclusion>
17631771
<groupId>${hive.group}</groupId>
17641772
<artifactId>hive-standalone-metastore-common</artifactId>
@@ -2074,6 +2082,10 @@
20742082
<version>${hive.version}</version>
20752083
<scope>${hive.deps.scope}</scope>
20762084
<exclusions>
2085+
<exclusion>
2086+
<groupId>${hive.group}</groupId>
2087+
<artifactId>hive-common</artifactId>
2088+
</exclusion>
20772089
<exclusion>
20782090
<groupId>${hive.group}</groupId>
20792091
<artifactId>hive-serde</artifactId>
@@ -2082,6 +2094,10 @@
20822094
<groupId>${hive.group}</groupId>
20832095
<artifactId>hive-shims</artifactId>
20842096
</exclusion>
2097+
<exclusion>
2098+
<groupId>${hive.group}</groupId>
2099+
<artifactId>hive-standalone-metastore-common</artifactId>
2100+
</exclusion>
20852101
<exclusion>
20862102
<groupId>org.apache.thrift</groupId>
20872103
<artifactId>libfb303</artifactId>
@@ -2125,7 +2141,6 @@
21252141
</exclusion>
21262142
</exclusions>
21272143
</dependency>
2128-
21292144
<dependency>
21302145
<groupId>${hive.group}</groupId>
21312146
<artifactId>hive-serde</artifactId>
@@ -2352,6 +2367,35 @@
23522367
<groupId>${hive.group}</groupId>
23532368
<artifactId>hive-udf</artifactId>
23542369
<version>${hive.version}</version>
2370+
<scope>${hive.deps.scope}</scope>
2371+
<exclusions>
2372+
<exclusion>
2373+
<groupId>${hive.group}</groupId>
2374+
<artifactId>hive-common</artifactId>
2375+
</exclusion>
2376+
<exclusion>
2377+
<groupId>${hive.group}</groupId>
2378+
<artifactId>hive-serde</artifactId>
2379+
</exclusion>
2380+
</exclusions>
2381+
</dependency>
2382+
<dependency>
2383+
<groupId>${hive.group}</groupId>
2384+
<artifactId>hive-standalone-metastore-common</artifactId>
2385+
<version>${hive.version}</version>
2386+
<scope>${hive.deps.scope}</scope>
2387+
<exclusions>
2388+
<exclusion>
2389+
<groupId>com.github.joshelser</groupId>
2390+
<artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
2391+
</exclusion>
2392+
</exclusions>
2393+
</dependency>
2394+
<dependency>
2395+
<groupId>com.github.joshelser</groupId>
2396+
<artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
2397+
<version>0.1.2</version>
2398+
<scope>runtime</scope>
23552399
</dependency>
23562400
<dependency>
23572401
<groupId>${hive.group}</groupId>
@@ -2396,6 +2440,16 @@
23962440
<artifactId>hive-parser</artifactId>
23972441
<version>${hive.version}</version>
23982442
<scope>runtime</scope>
2443+
<exclusions>
2444+
<exclusion>
2445+
<groupId>${hive.group}</groupId>
2446+
<artifactId>hive-common</artifactId>
2447+
</exclusion>
2448+
<exclusion>
2449+
<groupId>${hive.group}</groupId>
2450+
<artifactId>hive-serde</artifactId>
2451+
</exclusion>
2452+
</exclusions>
23992453
</dependency>
24002454
<dependency>
24012455
<groupId>org.apache.calcite</groupId>

sql/hive/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@
118118
<groupId>${hive.group}</groupId>
119119
<artifactId>hive-metastore</artifactId>
120120
</dependency>
121+
<dependency>
122+
<groupId>${hive.group}</groupId>
123+
<artifactId>hive-standalone-metastore-common</artifactId>
124+
</dependency>
121125
<dependency>
122126
<groupId>${hive.group}</groupId>
123127
<artifactId>hive-serde</artifactId>
@@ -230,6 +234,18 @@
230234
<artifactId>jodd-util</artifactId>
231235
<version>6.0.0</version>
232236
</dependency>
237+
<dependency>
238+
<groupId>org.apache.tez</groupId>
239+
<artifactId>tez-api</artifactId>
240+
<version>0.10.5</version>
241+
<exclusions>
242+
<exclusion>
243+
<groupId>*</groupId>
244+
<artifactId>*</artifactId>
245+
</exclusion>
246+
</exclusions>
247+
<scope>runtime</scope>
248+
</dependency>
233249
<dependency>
234250
<groupId>org.apache.derby</groupId>
235251
<artifactId>derby</artifactId>

0 commit comments

Comments
 (0)