Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.owasp:dependency-check-maven from 11.1.1 to 12.0.1 #1681

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
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 @@ -816,7 +816,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>11.1.1</version>
<version>12.0.1</version>
<executions>
<execution>
<goals>
Comment on lines 816 to 822
Copy link

Choose a reason for hiding this comment

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

The plugin configuration is minimal, using only the basic 'check' goal. Consider enhancing the configuration to take advantage of the new features in v12:

  1. The new failBuildOnUnusedSuppressionRule flag can help maintain clean suppression files
  2. CVSS v4 support might require configuration adjustments if you want to use the new scoring system
  3. If you're using authentication for external resources, review the new Bearer token authentication support

Example configuration to consider:

<configuration>
    <failBuildOnUnusedSuppressionRule>true</failBuildOnUnusedSuppressionRule>
    <!-- Add other relevant configuration options -->
</configuration>

Note: Major version upgrades (11.x -> 12.x) may introduce breaking changes. Review the changelog carefully, particularly around authentication changes, new failure conditions, and CVSS scoring updates. Consider testing the build process thoroughly before merging to ensure no CI/CD disruptions.

Expand Down