Skip to content

Commit f16ac8b

Browse files
cxzl25pan3793
authored andcommitted
[KYUUBI #2576][FOLLOWUP] Bump Hudi 0.11.0
### _Why are the changes needed?_ - Resolve WARNING prompt for IntelliJ IDEA Build Panel - Re-adjusted the order of several hudi moudles to make it consistent in the order of server and engine ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #2659 from cxzl25/KYUUBI-2576-FOLLOWUP. Closes #2576 e6c5abf [sychen] avoid warning & reformat Authored-by: sychen <sychen@ctrip.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent b088f39 commit f16ac8b

File tree

3 files changed

+41
-9
lines changed

3 files changed

+41
-9
lines changed

externals/kyuubi-spark-sql-engine/pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,12 @@
137137
<scope>test</scope>
138138
</dependency>
139139

140+
<dependency>
141+
<groupId>org.apache.parquet</groupId>
142+
<artifactId>parquet-avro</artifactId>
143+
<scope>test</scope>
144+
</dependency>
145+
140146
<dependency>
141147
<groupId>org.apache.spark</groupId>
142148
<artifactId>spark-avro_${scala.binary.version}</artifactId>
@@ -145,25 +151,25 @@
145151

146152
<dependency>
147153
<groupId>org.apache.hudi</groupId>
148-
<artifactId>hudi-spark-common_${scala.binary.version}</artifactId>
154+
<artifactId>hudi-common</artifactId>
149155
<scope>test</scope>
150156
</dependency>
151157

152158
<dependency>
153159
<groupId>org.apache.hudi</groupId>
154-
<artifactId>hudi-spark3.1.x_${scala.binary.version}</artifactId>
160+
<artifactId>hudi-spark-common_${scala.binary.version}</artifactId>
155161
<scope>test</scope>
156162
</dependency>
157163

158164
<dependency>
159-
<groupId>org.apache.parquet</groupId>
160-
<artifactId>parquet-avro</artifactId>
165+
<groupId>org.apache.hudi</groupId>
166+
<artifactId>hudi-spark_${scala.binary.version}</artifactId>
161167
<scope>test</scope>
162168
</dependency>
163169

164170
<dependency>
165171
<groupId>org.apache.hudi</groupId>
166-
<artifactId>hudi-spark_${scala.binary.version}</artifactId>
172+
<artifactId>hudi-spark3.1.x_${scala.binary.version}</artifactId>
167173
<scope>test</scope>
168174
</dependency>
169175

kyuubi-server/pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,14 +364,14 @@
364364
</dependency>
365365

366366
<dependency>
367-
<groupId>org.apache.hudi</groupId>
368-
<artifactId>hudi-spark3.1.x_${scala.binary.version}</artifactId>
367+
<groupId>org.apache.parquet</groupId>
368+
<artifactId>parquet-avro</artifactId>
369369
<scope>test</scope>
370370
</dependency>
371371

372372
<dependency>
373-
<groupId>org.apache.parquet</groupId>
374-
<artifactId>parquet-avro</artifactId>
373+
<groupId>org.apache.hudi</groupId>
374+
<artifactId>hudi-common</artifactId>
375375
<scope>test</scope>
376376
</dependency>
377377

@@ -387,6 +387,12 @@
387387
<scope>test</scope>
388388
</dependency>
389389

390+
<dependency>
391+
<groupId>org.apache.hudi</groupId>
392+
<artifactId>hudi-spark3.1.x_${scala.binary.version}</artifactId>
393+
<scope>test</scope>
394+
</dependency>
395+
390396
<dependency>
391397
<groupId>io.delta</groupId>
392398
<artifactId>delta-core_${scala.binary.version}</artifactId>

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,26 @@
981981
<version>${spark.version}</version>
982982
</dependency>
983983

984+
<dependency>
985+
<groupId>org.apache.hudi</groupId>
986+
<artifactId>hudi-common</artifactId>
987+
<version>${hudi.version}</version>
988+
<exclusions>
989+
<exclusion>
990+
<groupId>com.fasterxml.jackson.core</groupId>
991+
<artifactId>*</artifactId>
992+
</exclusion>
993+
<exclusion>
994+
<groupId>org.apache.hbase</groupId>
995+
<artifactId>hbase-server</artifactId>
996+
</exclusion>
997+
<exclusion>
998+
<groupId>org.apache.hbase</groupId>
999+
<artifactId>hbase-client</artifactId>
1000+
</exclusion>
1001+
</exclusions>
1002+
</dependency>
1003+
9841004
<dependency>
9851005
<groupId>org.apache.hudi</groupId>
9861006
<artifactId>hudi-spark-common_${scala.binary.version}</artifactId>

0 commit comments

Comments
 (0)