Skip to content

Commit

Permalink
feat: add OWASP Dependency Check stage to Jenkinsfile for dependency …
Browse files Browse the repository at this point in the history
…analysis
  • Loading branch information
Ganthepro committed Dec 30, 2024
1 parent 264dd13 commit ae23cf2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ pipeline {
// ใช้คำสั่ง sonar-scanner เพื่อทำการวิเคราะห์โค้ดของเรา
}
}

stage('OWASP Dependency Check') {
steps {
dependencyCheck additionalArguments: '--scan ./', odcInstallation: 'dependency-check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
// ใช้คำสั่ง dependencyCheck เพื่อทำการวิเคราะห์ dependency ของโปรเจคของเรา
}
}

stage('Build') {
steps {
Expand Down

0 comments on commit ae23cf2

Please sign in to comment.