Skip to content

Commit

Permalink
chore: pin javassist version in flow plugin base (#20719) (#20724)
Browse files Browse the repository at this point in the history
* chore: pin javassist version in flow plugin base

Fixes #20712

* fix poms

Co-authored-by: Marco Collovati <[email protected]>
  • Loading branch information
vaadin-bot and mcollovati authored Dec 16, 2024
1 parent ccc8ebd commit 3780df1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions flow-plugins/flow-plugin-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,17 @@
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
<exclusion>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>${javassist.version}</version>
</dependency>
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-exec</artifactId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<jaxb.version>4.0.5</jaxb.version>
<guava.version>33.1.0-jre</guava.version>
<jakarta.websocket.version>2.1.1</jakarta.websocket.version>
<javassist.version>3.30.2-GA</javassist.version>

<!-- Plugins -->
<frontend.maven.plugin.version>1.5</frontend.maven.plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.30.2-GA</version>
<version>${javassist.version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 3780df1

Please sign in to comment.