We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As described on jeremylong/DependencyCheck#4044 (comment) , this approach could help running the Gradle scan without changing build.gradle:
run-odc.gradle
initscript { repositories { maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "org.owasp:dependency-check-gradle:6.5.3" } } rootProject { apply plugin: org.owasp.dependencycheck.gradle.DependencyCheckPlugin dependencyCheck { failBuildOnCVSS=5 suppressionFile="./allow-list.xml" format='ALL' } }
gradlew
./gradlew --init-script run-odc.gradle dependencyCheckAggregate --info
The text was updated successfully, but these errors were encountered:
We partially addressed this by using the OWASP DC Action, closing.
Sorry, something went wrong.
No branches or pull requests
As described on jeremylong/DependencyCheck#4044 (comment) , this approach could help running the Gradle scan without changing build.gradle:
run-odc.gradle
gradlew
command:The text was updated successfully, but these errors were encountered: