|
51 | 51 | <tomcat-embed-el.version>10.1.4</tomcat-embed-el.version> |
52 | 52 | <commons-collections4.version>4.4</commons-collections4.version> |
53 | 53 | <commons-lang3.version>3.18.0</commons-lang3.version> |
| 54 | + <commons-compress.version>1.26.0</commons-compress.version> |
| 55 | + <commons-io.version>2.14.0</commons-io.version> |
54 | 56 | <asynchttpclient.version>2.12.4</asynchttpclient.version> |
55 | 57 | <aircompressor.version>0.27</aircompressor.version> |
56 | 58 | <jackson.version>2.15.4</jackson.version> |
| 59 | + <snakeyaml.version>2.0</snakeyaml.version> |
| 60 | + <netty.version>4.1.129.Final</netty.version> |
57 | 61 | </properties> |
58 | 62 | <modules> |
59 | 63 | <module>streaming-ai</module> |
|
139 | 143 | <artifactId>commons-collections4</artifactId> |
140 | 144 | <version>${commons-collections4.version}</version> |
141 | 145 | </dependency> |
| 146 | + <dependency> |
| 147 | + <groupId>org.apache.commons</groupId> |
| 148 | + <artifactId>commons-lang3</artifactId> |
| 149 | + <version>${commons-lang3.version}</version> |
| 150 | + </dependency> |
| 151 | + <dependency> |
| 152 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 153 | + <artifactId>jackson-dataformat-yaml</artifactId> |
| 154 | + <version>${jackson.version}</version> |
| 155 | + </dependency> |
| 156 | + <dependency> |
| 157 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 158 | + <artifactId>jackson-core</artifactId> |
| 159 | + <version>${jackson.version}</version> |
| 160 | + </dependency> |
142 | 161 | <!-- Override transitive dependency version to fix vulnerability --> |
143 | 162 | <dependency> |
144 | 163 | <groupId>io.airlift</groupId> |
|
153 | 172 | <version>${asynchttpclient.version}</version> |
154 | 173 | <scope>runtime</scope> |
155 | 174 | </dependency> |
| 175 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 176 | + <dependency> |
| 177 | + <groupId>org.yaml</groupId> |
| 178 | + <artifactId>snakeyaml</artifactId> |
| 179 | + <version>${snakeyaml.version}</version> |
| 180 | + <scope>runtime</scope> |
| 181 | + </dependency> |
| 182 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 183 | + <dependency> |
| 184 | + <groupId>org.apache.commons</groupId> |
| 185 | + <artifactId>commons-compress</artifactId> |
| 186 | + <version>${commons-compress.version}</version> |
| 187 | + <scope>runtime</scope> |
| 188 | + </dependency> |
| 189 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 190 | + <dependency> |
| 191 | + <groupId>commons-io</groupId> |
| 192 | + <artifactId>commons-io</artifactId> |
| 193 | + <version>${commons-io.version}</version> |
| 194 | + <scope>runtime</scope> |
| 195 | + </dependency> |
| 196 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 197 | + <dependency> |
| 198 | + <groupId>io.netty</groupId> |
| 199 | + <artifactId>netty-codec-http2</artifactId> |
| 200 | + <version>${netty.version}</version> |
| 201 | + <scope>runtime</scope> |
| 202 | + </dependency> |
| 203 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 204 | + <dependency> |
| 205 | + <groupId>io.netty</groupId> |
| 206 | + <artifactId>netty-codec-http</artifactId> |
| 207 | + <version>${netty.version}</version> |
| 208 | + <scope>runtime</scope> |
| 209 | + </dependency> |
| 210 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 211 | + <dependency> |
| 212 | + <groupId>io.netty</groupId> |
| 213 | + <artifactId>netty-common</artifactId> |
| 214 | + <version>${netty.version}</version> |
| 215 | + <scope>runtime</scope> |
| 216 | + </dependency> |
| 217 | + <!-- Override transitive dependency version to fix vulnerability --> |
| 218 | + <dependency> |
| 219 | + <groupId>io.netty</groupId> |
| 220 | + <artifactId>netty-handler</artifactId> |
| 221 | + <version>${netty.version}</version> |
| 222 | + <scope>runtime</scope> |
| 223 | + </dependency> |
156 | 224 | </dependencies> |
157 | 225 | </dependencyManagement> |
158 | 226 | <build> |
|
0 commit comments