From 2f258923504204632f160cdb75b7b463f077e969 Mon Sep 17 00:00:00 2001 From: Dongho Kim Date: Wed, 10 Dec 2025 13:06:52 +0100 Subject: [PATCH] update --- Jenkinsfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 115cdd8..7d93803 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,19 +1,10 @@ pipeline { agent any - // Explicitly define the tool to ensure it is available on the path. - // The symbol 'dependency-check' usually corresponds to the OWASP Dependency-Check plugin tool type. - tools { - 'dependency-check' 'depcheck' - } - stages { stage('Security Scan') { steps { - // Debug: Verify the tool is available and print version - sh 'dependency-check.sh --version || echo "WARNING: dependency-check.sh not found in PATH"' - - // Run OWASP Dependency Check using the specific installation + // Run OWASP Dependency Check using the specific installation configured in Jenkins dependencyCheck additionalArguments: '--scan ./ --format ALL', odcInstallation: 'depcheck' } }