|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <!--
|
3 |
| - ~ Copyright (c) 2023 AsyncHttpClient Project. All rights reserved. |
| 3 | + ~ Copyright (c) 2024 AsyncHttpClient Project. All rights reserved. |
4 | 4 | ~
|
5 | 5 | ~ Licensed under the Apache License, Version 2.0 (the "License");
|
6 | 6 | ~ you may not use this file except in compliance with the License.
|
|
60 | 60 |
|
61 | 61 | <netty.version>4.1.107.Final</netty.version>
|
62 | 62 | <netty.iouring>0.0.25.Final</netty.iouring>
|
| 63 | + <brotli4j.version>1.16.0</brotli4j.version> |
63 | 64 | <slf4j.version>2.0.12</slf4j.version>
|
64 | 65 | <activation.version>2.0.1</activation.version>
|
65 | 66 | <logback.version>1.4.11</logback.version>
|
|
223 | 224 | <optional>true</optional>
|
224 | 225 | </dependency>
|
225 | 226 |
|
| 227 | + <dependency> |
| 228 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 229 | + <artifactId>brotli4j</artifactId> |
| 230 | + <version>${brotli4j.version}</version> |
| 231 | + <optional>true</optional> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 235 | + <artifactId>native-linux-x86_64</artifactId> |
| 236 | + <version>${brotli4j.version}</version> |
| 237 | + <optional>true</optional> |
| 238 | + </dependency> |
| 239 | + <dependency> |
| 240 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 241 | + <artifactId>native-linux-aarch64</artifactId> |
| 242 | + <version>${brotli4j.version}</version> |
| 243 | + <optional>true</optional> |
| 244 | + </dependency> |
| 245 | + <dependency> |
| 246 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 247 | + <artifactId>native-linux-riscv64</artifactId> |
| 248 | + <version>${brotli4j.version}</version> |
| 249 | + <optional>true</optional> |
| 250 | + </dependency> |
| 251 | + <dependency> |
| 252 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 253 | + <artifactId>native-osx-x86_64</artifactId> |
| 254 | + <version>${brotli4j.version}</version> |
| 255 | + <optional>true</optional> |
| 256 | + </dependency> |
| 257 | + <dependency> |
| 258 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 259 | + <artifactId>native-osx-aarch64</artifactId> |
| 260 | + <version>${brotli4j.version}</version> |
| 261 | + <optional>true</optional> |
| 262 | + </dependency> |
| 263 | + <dependency> |
| 264 | + <groupId>com.aayushatharva.brotli4j</groupId> |
| 265 | + <artifactId>native-windows-x86_64</artifactId> |
| 266 | + <version>${brotli4j.version}</version> |
| 267 | + <optional>true</optional> |
| 268 | + </dependency> |
| 269 | + |
226 | 270 | <dependency>
|
227 | 271 | <groupId>org.slf4j</groupId>
|
228 | 272 | <artifactId>slf4j-api</artifactId>
|
|
0 commit comments