We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33f938 commit 29cbbacCopy full SHA for 29cbbac
build.gradle.kts
@@ -83,6 +83,11 @@ mkdir(configBuildDir)
83
val hardCodedLicensesReportPath = "project-licenses-for-check-license-task.json"
84
85
dependencyCheck{
86
+ // Configure dependency check plugin. It checks for publicly disclosed
87
+ // vulnerabilities in project dependencies. To use it, you need to have an
88
+ // API key from the NVD (National Vulnerability Database), pass it by setting
89
+ // the environment variable NVD_API_key (See project README.md: Static Code
90
+ // Analysis -> Vulnerability report).
91
nvd{
92
apiKey = System.getenv("NVD_API_key")
93
}
0 commit comments