Skip to content
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

chore: disable owasp nodejs checking #537

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@ dependencyCheck {
outputDirectory = "$buildDir/reports/owasp-dependency-check"
formats = [ReportGenerator.Format.SARIF.toString()]
nvd.apiKey = project.findProperty("OWASP_API_KEY")
analyzers.ossIndex.warnOnlyOnRemoteErrors = true
analyzers.assemblyEnabled = false
analyzers.nodeEnabled = false
analyzers.nodeAudit.enabled = false
analyzers.nodeAudit.yarnEnabled = false
}

def static readEnvFile(path = ".env") {
Expand Down
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
org.gradle.jvmargs=-Xmx2048m
Loading