Skip to content

Commit

Permalink
chore: unbreak build by adding JSR305 implementation
Browse files Browse the repository at this point in the history
Correction for acaf7cb commit.

Relate to #1669
  • Loading branch information
php-coder committed Feb 9, 2024
1 parent acaf7cb commit bb4afed
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
<version>${thymeleaf.togglz.version}</version>
</dependency>

<!--
Without this dependency, compilation fails with:
Warning: unknown enum constant javax.annotation.meta.When.MAYBE
Spring uses this constant and thus this dependency is needed.
Details:
- https://github.com/spring-projects/spring-framework/issues/27183#issuecomment-1174742553
- https://github.com/spring-projects/spring-framework/issues/28797
-->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>

<!-- Required for InternetAddress class -->
<dependency>
<groupId>com.sun.mail</groupId>
Expand Down

0 comments on commit bb4afed

Please sign in to comment.