-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Scan Maven Plugins #5001
feat: Scan Maven Plugins #5001
Conversation
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
@mprins thanks for the suggestion! |
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviews that should be addressed before merge in my view are :
https://github.com/jeremylong/DependencyCheck/pull/5001/files/fdc8896ec749c8f865e47ed529e58affa9bc7e0d#r1020950469
…encyCheckMojo.java Co-authored-by: Mark Prins <[email protected]>
…encyCheckMojo.java Co-authored-by: Hans Aikema <[email protected]>
…encyCheckMojo.java Co-authored-by: Hans Aikema <[email protected]>
…encyCheckMojo.java Co-authored-by: Hans Aikema <[email protected]>
@aikebah I think I'm good with the 8.0.0 PRs now. Planning on spending this week integrating the 8.0.0 PRs and testing so we can finally get these released. Please let me know if you see any additional issues/concerns. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See review, think we should stay on the safe side with internal Maven vars.... with that integrated all looks good to me
maven/src/main/java/org/owasp/dependencycheck/maven/BaseDependencyCheckMojo.java
Outdated
Show resolved
Hide resolved
…encyCheckMojo.java Co-authored-by: Hans Aikema <[email protected]>
@jeremylong I'll leave the merge-sequence decision up to you.... my gut feel would be first the Known exploited and then the maven plugin would be the easiest to resolve any emerging merge conflicts |
Based on this dependency-check-sonar-plugin#748
Is there a way to disable that field or do we have to wait for it to be fixed? |
Fixes Issue #4035
Adds the ability to scan the plugins of a Maven project (via the org.owasp:dependency-check-maven plugin - not the CLI).
includedBy
to the HTML, XML, and JSON reports when scanning with the Maven Plugin.includedBy
is the root of the dependency tree (i.e. if a transitive dependency is scanned, theincludedBy
will be a direct dependency). Note that when using the maven pluginincludedBy
will be added even when plugins are not scanned.