|
22 | 22 | THE SOFTWARE. |
23 | 23 |
|
24 | 24 | --> |
25 | | -<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/xsd/maven-4.0.0.xsd"> |
| 25 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
26 | 27 | <modelVersion>4.0.0</modelVersion> |
27 | 28 |
|
28 | 29 | <groupId>com.influxdb</groupId> |
|
101 | 102 |
|
102 | 103 | <dependency> |
103 | 104 | <groupId>org.apache.arrow</groupId> |
104 | | - <artifactId>flight-grpc</artifactId> |
105 | | - <version>15.0.2</version> |
| 105 | + <artifactId>flight-core</artifactId> |
| 106 | + <version>18.1.0</version> |
106 | 107 | <exclusions> |
107 | 108 | <exclusion> |
108 | 109 | <groupId>org.slf4j</groupId> |
|
140 | 141 | <groupId>io.netty</groupId> |
141 | 142 | <artifactId>netty-buffer</artifactId> |
142 | 143 | </exclusion> |
| 144 | + <exclusion> |
| 145 | + <groupId>io.netty</groupId> |
| 146 | + <artifactId>netty-transport-native-unix-common</artifactId> |
| 147 | + </exclusion> |
143 | 148 | <exclusion> |
144 | 149 | <groupId>com.google.protobuf</groupId> |
145 | 150 | <artifactId>protobuf-java</artifactId> |
|
152 | 157 | <groupId>com.google.errorprone</groupId> |
153 | 158 | <artifactId>error_prone_annotations</artifactId> |
154 | 159 | </exclusion> |
| 160 | + <exclusion> |
| 161 | + <groupId>com.google.j2objc</groupId> |
| 162 | + <artifactId>j2objc-annotations</artifactId> |
| 163 | + </exclusion> |
| 164 | + <exclusion> |
| 165 | + <groupId>com.google.code.gson</groupId> |
| 166 | + <artifactId>gson</artifactId> |
| 167 | + </exclusion> |
155 | 168 | </exclusions> |
156 | 169 | </dependency> |
157 | 170 |
|
|
195 | 208 | </exclusions> |
196 | 209 | </dependency> |
197 | 210 |
|
| 211 | + <dependency> |
| 212 | + <groupId>io.netty</groupId> |
| 213 | + <artifactId>netty-transport-native-unix-common</artifactId> |
| 214 | + <version>${netty-handler.version}</version> |
| 215 | + </dependency> |
| 216 | + |
198 | 217 | <dependency> |
199 | 218 | <groupId>io.netty</groupId> |
200 | 219 | <artifactId>netty-tcnative-boringssl-static</artifactId> |
|
213 | 232 | <version>33.3.1-jre</version> |
214 | 233 | </dependency> |
215 | 234 |
|
| 235 | + <dependency> |
| 236 | + <groupId>com.google.j2objc</groupId> |
| 237 | + <artifactId>j2objc-annotations</artifactId> |
| 238 | + <version>3.0.0</version> |
| 239 | + </dependency> |
| 240 | + |
| 241 | + <dependency> |
| 242 | + <groupId>com.google.code.gson</groupId> |
| 243 | + <artifactId>gson</artifactId> |
| 244 | + <version>2.10.1</version> |
| 245 | + </dependency> |
| 246 | + |
216 | 247 | <dependency> |
217 | 248 | <groupId>org.slf4j</groupId> |
218 | 249 | <artifactId>slf4j-api</artifactId> |
|
0 commit comments