File tree Expand file tree Collapse file tree 3 files changed +41
-5
lines changed
risingwave-connector-service Expand file tree Collapse file tree 3 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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>
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 >
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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments