Skip to content

Instantly share code, notes, and snippets.

@m-tilab
Created September 30, 2024 08:42
Show Gist options
  • Save m-tilab/1ddd5c412708016ee8b256b22eded15a to your computer and use it in GitHub Desktop.
Save m-tilab/1ddd5c412708016ee8b256b22eded15a to your computer and use it in GitHub Desktop.
Maven Owasp dependency Check
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>$pluginVersion</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment