我试图将依赖检查添加到我的JenkinsFile中,但没有成功。
插件安装和配置完成。
全局工具配置
名称:Vulnerability 5
自动安装(选中)
版本:dependency-check 5.2.4
pipeline {
agent any
tools {
nodejs "node8"
dependency-check "vulnerability5"
}
stages {
stage('Install Deps') {
steps {
//Install dependecies
sh 'yarn install'
}
}
stage('Dependency Check') {
steps {
// Run OWASP Dependency Check
dependencyCheck additionalArguments: '-f "HTML, XML,CSV" -s .'
}
}
}
}
在工具中添加依赖项检查会破坏管道文件。知道我错过了什么吗?
1条答案
按热度按时间ffx8fchx1#
我使用这样的指令,它工作得很好:
**odc安装:'OWASP-DC'**是预安装和配置插件OWASP依赖检查我的Jenkins