From d5b6cb69b72590a92e03fceea774e93994d59a28 Mon Sep 17 00:00:00 2001 From: MihailInternul <157023284+MihailInternul@users.noreply.github.com> Date: Thu, 7 Mar 2024 15:50:57 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0520247bf..a0dfaa706 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,6 @@ pipeline { stage('Checkstyle') { steps { script { - // Use Maven for Checkstyle sh "${MAVEN_HOME}/bin/mvn checkstyle:checkstyle" archiveArtifacts 'target/checkstyle-result.xml' } @@ -21,7 +20,6 @@ pipeline { stage('Test') { steps { script { - // Use Maven for testing sh "${MAVEN_HOME}/bin/mvn test" } } @@ -30,7 +28,6 @@ pipeline { stage('Build') { steps { script { - // Use Maven for building without tests sh "${MAVEN_HOME}/bin/mvn package -DskipTests" } }