From 2169201487f0e2b518bdad8d1ad9c2a2c3b5b15f Mon Sep 17 00:00:00 2001 From: Zohar Date: Sun, 7 Apr 2024 16:35:26 -0400 Subject: [PATCH] test --- Jenkinsfile-1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile-1 b/Jenkinsfile-1 index 93e183ef2..2cdcf5bc9 100644 --- a/Jenkinsfile-1 +++ b/Jenkinsfile-1 @@ -7,5 +7,10 @@ node { withSonarQubeEnv("sq1") { sh "${mvn}/bin/mvn sonar:sonar -Dsonar.projectKey=Web -Dsonar.projectName='Web'" } + stage('Build') { + // Execute Maven build. Replace with your specific build command. + def mvn = tool 'M3'; + sh "./mvnw package" // Or any other relevant Maven goals for your project. + } } } \ No newline at end of file