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
In implementing the dependency-check-maven plugin for some of our projects we have found an occasion where it's possible that a false negative can occur with the maven plugin.
ie: the maven plugin misses a dependency that is picked up when pushing the jar file generated by the build through the command line.
In this case we have the following test dependancy
In implementing the dependency-check-maven plugin for some of our projects we have found an occasion where it's possible that a false negative can occur with the maven plugin.
ie: the maven plugin misses a dependency that is picked up when pushing the jar file generated by the build through the command line.
In this case we have the following test dependancy
Which is a vulnerable library, however since it is included as a test dependency it is ignored.
However we also have the following dependencies which are compiled
this version of dropwizard includes the vulnerable 2.5.3 version of jackson
It appears that the maven plugin is ignoring the jackson included through dropwizard because it also matches a test dependency.
Setting skipTestScope false sort-of works around this, but also introduces other failures which actually come from test dependancies.
The text was updated successfully, but these errors were encountered: