dependency-check / dependency-check-gradle

The dependency-check gradle plugin is a Software Composition Analysis (SCA) tool that allows projects to monitor dependent libraries for known, published vulnerabilities.

Home Page:http://jeremylong.github.io/DependencyCheck/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

default data directory in v9

picsouds opened this issue · comments

I noticed that in version 9.* the default data directory is still dependency-check-data/7.0

directory = "${project.gradle.gradleUserHomeDir}/dependency-check-data/7.0"

in the ant and maven plugin, the data directory is ../dependency-check-data/9.0

for gradle projects that use version 8.x and 9.x with the default directory, this is not compatible

works very well if you force the configuration for 9.x

data { directory = "${project.gradle.gradleUserHomeDir}/dependency-check-data/9.0" }