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 maven-modules/maven-exec-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</build>

<properties>
<logback.version>1.2.6</logback.version>
<logback.version>1.5.25</logback.version>

Copilot AI Jan 30, 2026

Copy link

Choose a reason for hiding this comment

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

The upgrade to logback-classic 1.5.25 is incompatible with the project's Java version configuration. Logback 1.5.x requires Java 11 as a minimum, but this project is configured to use Java 1.8 (see line 49). This will cause runtime or compile-time failures.

To fix the security vulnerability while maintaining Java 8 compatibility, consider using logback-classic 1.2.13 instead, which is the latest 1.2.x version that supports Java 8 and includes security fixes. Alternatively, if upgrading to Java 11+ is acceptable, update the java.version property accordingly.

Suggested change
<logback.version>1.5.25</logback.version>
<logback.version>1.2.13</logback.version>

Copilot uses AI. Check for mistakes.
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<java.version>1.8</java.version>
</properties>
Expand Down