Last active
September 30, 2024 08:39
-
-
Save m-tilab/a4e9cd4e3924e822494a2daef1abe489 to your computer and use it in GitHub Desktop.
Owasp dependency check plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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