mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 15:25:49 +00:00
Update Jenkinsfile
This commit is contained in:
parent
6f2f6a6ff4
commit
d5b6cb69b7
1 changed files with 0 additions and 3 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue