Skip to content
Open
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<servlet-api.version>6.0.0</servlet-api.version>
<junit.jupiter.version>5.8.2</junit.jupiter.version>
<junit.platform.version>1.8.2</junit.platform.version>
<logback.version>1.3.15</logback.version>
<logback.version>1.5.25</logback.version>
<netty.version>4.1.118.Final</netty.version>
<slf4j.version>1.7.36</slf4j.version>

Copilot AI Jan 24, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Upgrading Logback to version 1.5.25 requires also upgrading SLF4J to version 2.0.x or later. Logback 1.5.x is built against SLF4J 2.0 API and is not compatible with SLF4J 1.7.x (currently at 1.7.36 on line 90). This mismatch will likely cause runtime errors or ClassNotFoundException issues. Consider upgrading slf4j.version to at least 2.0.0, or use Logback 1.3.x series (such as 1.3.16) which is compatible with SLF4J 1.7.x and also addresses the security vulnerability.

Suggested change
<slf4j.version>1.7.36</slf4j.version>
<slf4j.version>2.0.16</slf4j.version>

Copilot uses AI. Check for mistakes.
<spring.version>6.0.0</spring.version>
Expand Down