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
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -281,7 +281,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down Expand Up @@ -1445,7 +1445,7 @@

<!-- logging -->
<org.slf4j.version>1.7.32</org.slf4j.version>

Copilot AI Jan 27, 2026

Copy link

Choose a reason for hiding this comment

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

logback.version was bumped to 1.5.25, but this POM still pins org.slf4j.version to 1.7.32. Logback 1.3+/1.5.x targets SLF4J 2.x, so forcing SLF4J 1.7 here can lead to dependency convergence problems and runtime failures (e.g., missing provider / NoSuchMethodError). Align the versions by upgrading org.slf4j.version (and related bridges like jcl-over-slf4j) to a compatible 2.x release, or choose a Logback version that remains compatible with SLF4J 1.7.

Suggested change
<org.slf4j.version>1.7.32</org.slf4j.version>
<org.slf4j.version>2.0.16</org.slf4j.version>

Copilot uses AI. Check for mistakes.
<logback.version>1.2.6</logback.version>
<logback.version>1.5.25</logback.version>

Copilot AI Jan 27, 2026

Copy link

Choose a reason for hiding this comment

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

The PR description mentions fixing a Commons Codec vulnerability (SNYK-JAVA-COMMONSCODEC-561518), but pom.xml doesn't declare or manage commons-codec anywhere. If the vulnerable version is coming transitively, consider adding an explicit <dependencyManagement> (or direct dependency) entry to pin commons-codec to a non-vulnerable version; otherwise the PR may not actually remediate that issue as described.

Copilot uses AI. Check for mistakes.

<!-- plugins -->
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
Expand Down