OWASP依赖检查和Jenkins管道

uqcuzwp8  于 2023-05-06  发布在  Jenkins
关注(0)|答案(1)|浏览(181)

我试图将依赖检查添加到我的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 .'
        }
      }
   }
}

在工具中添加依赖项检查会破坏管道文件。知道我错过了什么吗?

ffx8fchx

ffx8fchx1#

我使用这样的指令,它工作得很好:

stages {
        stage ('OWASP Dependency-Check Vulnerabilities') {
            steps {
                dependencyCheck additionalArguments: ''' 
                    -o "./" 
                    -s "./"
                    -f "ALL" 
                    --prettyPrint''', odcInstallation: 'OWASP-DC'

                dependencyCheckPublisher pattern: 'dependency-check-report.xml'
            }
        }     
    }

**odc安装:'OWASP-DC'**是预安装和配置插件OWASP依赖检查我的Jenkins

相关问题