You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What it does: when i run the dependencyCheckAnalyze task from the root project then it generates reports in the build folder of each module separately. But I want a single report with vulnerabilities from all modules, so I run dependencyCheckAggregate but it runs forever.
So I changed to code by removing allprojects part:
Works well for the dependencyCheckAggregate but the task dependencyCheckAnalyze does not exist in sub-modules now, so running that task now only scans the root project, not any of the sub-modules.
What I need: configuration that will make dependencyCheckAggregate behave like in 2nd example and dependencyCheckAnalyze like in 1st example. How can I achieve that by touching only the root build.gradle file?
The text was updated successfully, but these errors were encountered:
Docs seem to suggest that both tasks
dependencyCheckAnalyze
anddependencyCheckAggregate
are configured usingdependencyCheck
, see Example section: https://jeremylong.github.io/DependencyCheck/dependency-check-gradle/configuration-aggregate.htmlBut I want to configure them independently, from the root
build.gradle
file. I have this code:What it does: when i run the
dependencyCheckAnalyze
task from the root project then it generates reports in the build folder of each module separately. But I want a single report with vulnerabilities from all modules, so I rundependencyCheckAggregate
but it runs forever.So I changed to code by removing
allprojects
part:Works well for the
dependencyCheckAggregate
but the taskdependencyCheckAnalyze
does not exist in sub-modules now, so running that task now only scans the root project, not any of the sub-modules.What I need: configuration that will make
dependencyCheckAggregate
behave like in 2nd example anddependencyCheckAnalyze
like in 1st example. How can I achieve that by touching only the rootbuild.gradle
file?The text was updated successfully, but these errors were encountered: