Skip to content

Commit b82db49

Browse files
authored
Merge branch 'main' into xxh/merge-sink-snowflake-to-main
2 parents 78fac27 + ed58a68 commit b82db49

File tree

3 files changed

+41
-5
lines changed

3 files changed

+41
-5
lines changed

java/connector-node/risingwave-connector-service/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,27 @@
2626
<groupId>com.risingwave</groupId>
2727
<artifactId>proto</artifactId>
2828
</dependency>
29+
<!-- Ensure all grpc-* artifacts are aligned (avoid mixing versions pulled by other deps). -->
30+
<dependency>
31+
<groupId>io.grpc</groupId>
32+
<artifactId>grpc-api</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>io.grpc</groupId>
36+
<artifactId>grpc-core</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>io.grpc</groupId>
40+
<artifactId>grpc-context</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>io.grpc</groupId>
44+
<artifactId>grpc-protobuf-lite</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>io.grpc</groupId>
48+
<artifactId>grpc-util</artifactId>
49+
</dependency>
2950
<dependency>
3051
<groupId>com.risingwave</groupId>
3152
<artifactId>java-binding</artifactId>

java/connector-node/risingwave-sink-iceberg/pom.xml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
<properties>
1919
<iceberg.version>1.10.1</iceberg.version>
20+
<!-- Keep in sync with the versions bundled in org.apache.iceberg:iceberg-gcp-bundle -->
21+
<google.cloud.storage.version>2.55.0</google.cloud.storage.version>
22+
<google.cloud.kms.version>2.75.0</google.cloud.kms.version>
2023
<maven.compiler.source>11</maven.compiler.source>
2124
<maven.compiler.target>11</maven.compiler.target>
2225
<maven.javadoc.skip>true</maven.javadoc.skip>
@@ -94,6 +97,16 @@
9497
<artifactId>iceberg-gcp</artifactId>
9598
<version>${iceberg.version}</version>
9699
</dependency>
100+
<dependency>
101+
<groupId>com.google.cloud</groupId>
102+
<artifactId>google-cloud-storage</artifactId>
103+
<version>${google.cloud.storage.version}</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>com.google.cloud</groupId>
107+
<artifactId>google-cloud-kms</artifactId>
108+
<version>${google.cloud.kms.version}</version>
109+
</dependency>
97110
<dependency>
98111
<groupId>software.amazon.awssdk</groupId>
99112
<artifactId>s3</artifactId>
@@ -142,10 +155,5 @@
142155
<artifactId>iceberg-snowflake</artifactId>
143156
<version>${iceberg.version}</version>
144157
</dependency>
145-
<dependency>
146-
<groupId>org.apache.iceberg</groupId>
147-
<artifactId>iceberg-gcp-bundle</artifactId>
148-
<version>${iceberg.version}</version>
149-
</dependency>
150158
</dependencies>
151159
</project>

java/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@
7878

7979
<dependencyManagement>
8080
<dependencies>
81+
<dependency>
82+
<groupId>io.grpc</groupId>
83+
<artifactId>grpc-bom</artifactId>
84+
<version>${grpc.version}</version>
85+
<type>pom</type>
86+
<scope>import</scope>
87+
</dependency>
8188
<dependency>
8289
<groupId>org.apache.logging.log4j</groupId>
8390
<artifactId>log4j-api</artifactId>

0 commit comments

Comments
 (0)