-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Spring Boot 3 and JDK 17 (#304)
* Update to Spring Boot 3 and JDK 17 Update other Dependencies * Fix CI * Fix CI * Update OWASP Dependency Check
- Loading branch information
Showing
36 changed files
with
151 additions
and
292 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lombok.copyableAnnotations += org.springframework.beans.factory.annotation.Qualifier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
<suppress> | ||
<notes>see https://github.com/jeremylong/DependencyCheck/issues/1827></notes> | ||
<cve>CVE-2018-1258</cve> | ||
<notes>H2 is only used for testing, not production</notes> | ||
<cve>CVE-2022-45868</cve> | ||
</suppress> | ||
<suppress> | ||
<notes>see https://github.com/jeremylong/DependencyCheck/issues/2952</notes> | ||
<cve>CVE-2011-2732</cve> | ||
<cve>CVE-2011-2731</cve> | ||
<cve>CVE-2012-5055</cve> | ||
</suppress> | ||
<suppress> | ||
<notes>see https://tomcat.apache.org/security-9.html#Apache_Tomcat_9.x_vulnerabilities vulnerability is fixed in tomcat 9.0.38</notes> | ||
<cve>CVE-2020-13943</cve> | ||
</suppress> | ||
<suppress> | ||
<notes>H2 Vulnerability suppressed</notes> | ||
<cve>CVE-2021-23463</cve> | ||
</suppress> | ||
<suppress> | ||
<notes>netty-transport-4.1.70 Vulnerability</notes> | ||
<cve>CVE-2021-43797</cve> | ||
<notes>no YAML content from users is parsed within this service</notes> | ||
<cve>CVE-2022-1471</cve> | ||
</suppress> | ||
</suppressions> |
Oops, something went wrong.