Skip to content

Instantly share code, notes, and snippets.

@m-tilab
Last active September 30, 2024 08:39
Show Gist options
  • Select an option

  • Save m-tilab/a4e9cd4e3924e822494a2daef1abe489 to your computer and use it in GitHub Desktop.

Select an option

Save m-tilab/a4e9cd4e3924e822494a2daef1abe489 to your computer and use it in GitHub Desktop.
Owasp dependency check plugin
buildscript {
 repositories {
 mavenCentral()
 }
 dependencies {
 classpath 'org.owasp:dependency-check-gradle:{Plugin-version}'
 }
}
apply plugin: 'org.owasp.dependencycheck'
dependencyCheck {
 failBuildOnCVSS = 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment