Skip to content

Commit

Permalink
chore: disable owasp nodejs checking (#537)
Browse files Browse the repository at this point in the history
* chore: disable owasp nodejs checking

We have dependabot for nodejs

* chore: increase java + gradle heap space
  • Loading branch information
timonback committed Jan 12, 2024
1 parent 3ee5569 commit 5d0a7c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
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

0 comments on commit 5d0a7c6

Please sign in to comment.