Skip to content

Commit

Permalink
add OWASP dependencyCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Oct 30, 2024
1 parent 9cf716e commit 337b9cf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,21 @@ plugins {
id "com.github.node-gradle.node" version "7.0.1"
id 'com.github.gmazzo.buildconfig' version '3.0.3'
id "org.sonarqube" version "4.4.1.3373"
id "org.owasp.dependencycheck" version "11.0.0"
}

allprojects {
apply plugin: 'com.github.node-gradle.node'
}

dependencyCheck {
nvd {
apiKey=System.getenv("NVD_API_KEY") ?: ""
delay=30000
}
formats = ['HTML', 'XML']
}

def zkcmlDir = "$rootDir/../zkcml"
def resources = 'src/main/resources'
def codegen = 'codegen/resources'
Expand Down

0 comments on commit 337b9cf

Please sign in to comment.