Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
<commons-lang3.version>3.18.0</commons-lang3.version>
<commons-compress.version>1.26.0</commons-compress.version>
<commons-io.version>2.14.0</commons-io.version>
<asynchttpclient.version>2.14.5</asynchttpclient.version>
<asynchttpclient.version>2.15.0</asynchttpclient.version>
<aircompressor.version>2.0.3</aircompressor.version>
<jackson.version>2.21.2</jackson.version>
<snakeyaml.version>2.0</snakeyaml.version>
<netty.version>4.1.132.Final</netty.version>
<netty.version>4.1.133.Final</netty.version>
</properties>
<modules>
<module>streaming-ai</module>
Expand Down Expand Up @@ -208,6 +208,18 @@
<scope>runtime</scope>
</dependency>
<!-- Override transitive dependency version to fix vulnerability -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-dns</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- Override transitive dependency version to fix vulnerability -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- Override transitive dependency version to fix vulnerability -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
Expand All @@ -221,6 +233,12 @@
<version>${netty.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Override transitive dependency version to fix vulnerability -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down
1 change: 0 additions & 1 deletion pulsar-ai-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Loading