skip the checktyle in build

This commit is contained in:
TomPGrid 2025-02-28 10:43:01 +01:00
parent 40992f8f54
commit 487f87820e

2
Jenkinsfile vendored
View file

@ -19,13 +19,11 @@ pipeline {
steps { steps {
sh 'mvn clean package -DskipTests -Dcheckstyle.skip=true' sh 'mvn clean package -DskipTests -Dcheckstyle.skip=true'
} }
/*
post { post {
always { always {
archiveArtifacts artifacts: 'target/*.jar', allowEmptyArchive: true archiveArtifacts artifacts: 'target/*.jar', allowEmptyArchive: true
} }
} }
*/
} }
} }
} }