|
54 | 54 |
|
55 | 55 | <properties>
|
56 | 56 | <jackson.version>2.14.0</jackson.version>
|
| 57 | + <netty.version>4.1.78.Final</netty.version> |
57 | 58 | <checkstyle.config>${project.basedir}/src/test/resources/io/tarantool/driver/checkstyle.xml</checkstyle.config>
|
58 | 59 | <checkstyle.suppressions>${project.basedir}/src/test/resources/io/tarantool/driver/suppressions.xml</checkstyle.suppressions>
|
59 | 60 | <logging.config>${project.basedir}/src/test/resources/logback-test.xml</logging.config>
|
|
216 | 217 | <dependencies>
|
217 | 218 | <dependency>
|
218 | 219 | <groupId>io.netty</groupId>
|
219 |
| - <artifactId>netty-all</artifactId> |
220 |
| - <version>4.1.78.Final</version> |
| 220 | + <artifactId>netty-transport</artifactId> |
| 221 | + <version>${netty.version}</version> |
| 222 | + </dependency> |
| 223 | + <dependency> |
| 224 | + <groupId>io.netty</groupId> |
| 225 | + <artifactId>netty-handler</artifactId> |
| 226 | + <version>${netty.version}</version> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>io.netty</groupId> |
| 230 | + <artifactId>netty-codec</artifactId> |
| 231 | + <version>${netty.version}</version> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>io.netty</groupId> |
| 235 | + <artifactId>netty-codec-http</artifactId> |
| 236 | + <version>${netty.version}</version> |
| 237 | + </dependency> |
| 238 | + <dependency> |
| 239 | + <groupId>io.netty</groupId> |
| 240 | + <artifactId>netty-transport</artifactId> |
| 241 | + <version>${netty.version}</version> |
221 | 242 | </dependency>
|
222 | 243 | <dependency>
|
223 | 244 | <groupId>org.msgpack</groupId>
|
|
250 | 271 | <artifactId>testcontainers-java-tarantool</artifactId>
|
251 | 272 | <version>0.5.3</version>
|
252 | 273 | <scope>test</scope>
|
| 274 | + <exclusions> |
| 275 | + <exclusion> |
| 276 | + <groupId>io.netty</groupId> |
| 277 | + <artifactId>netty-all</artifactId> |
| 278 | + </exclusion> |
| 279 | + </exclusions> |
253 | 280 | </dependency>
|
254 | 281 | <dependency>
|
255 | 282 | <groupId>org.openjdk.jmh</groupId>
|
|
0 commit comments