Skip to content

Commit

Permalink
chore: update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ZheSun88 committed Nov 14, 2024
1 parent 1898875 commit f1946b2
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions vaadin-dev/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,75 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>copilot</artifactId>
<exclusions>
<!-- io.projectreactor.netty:reactor-netty:jar:1.1.24 brings vulnerable dependencies
and also failed the dependency convergence test, as netty-* has different versions -->
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>4.1.115.Final</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
<version>4.1.115.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit f1946b2

Please sign in to comment.