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 marlo-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<hibernate-core-version>4.3.5.Final</hibernate-core-version>
<org.springframework-version>4.3.24.RELEASE</org.springframework-version>
<junit.version>4.13.1</junit.version>
<logback-classic.version>1.1.7</logback-classic.version>
<logback-classic.version>1.5.25</logback-classic.version>
Copy link

Choose a reason for hiding this comment

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

Logback 1.5.x requires JDK 11, incompatible with Java 8

High Severity

Upgrading logback-classic from 1.1.7 to 1.5.25 introduces a critical compatibility issue. Logback 1.5.x requires JDK 11+ at runtime, but this project targets Java 8 (<source>1.8</source>). Additionally, Logback 1.5.x requires SLF4J 2.0.x and uses Jakarta EE (jakarta.* namespace), while this project uses Java EE APIs (javax.servlet, javax.mail, etc.). This version mismatch will cause runtime failures.

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

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

Janino 2.7.8 incompatible with Logback 1.5.x conditional logging

Medium Severity

The project explicitly declares janino version 2.7.8 (used for conditional logging configuration like <if> tags in logback.xml), but Logback 1.5.x requires Janino 3.1.x. The explicit version pin at <janino.version>2.7.8</janino.version> would override transitive dependencies, causing NoSuchMethodError or similar runtime failures when conditional logging features are used.

Additional Locations (1)

Fix in Cursor Fix in Web

<janino.version>2.7.8</janino.version>
<javax.inject.version>1</javax.inject.version>
<javax-mail.version>1.5.5</javax-mail.version>
Expand Down