jenkins-hello-world-pub/Jenkinsfile
2025-12-15 01:47:54 +08:00

31 lines
No EOL
447 B
Groovy

pipeline {
agent any
stages {
stage('Echo Version') {
steps {
sh 'echo Print Maven Version'
sh 'mvn -version '
}
}
stage('Build') {
steps {
sh 'mvn clean package -DskipTests=true'
archiveArtifacts 'target/hello-demo-*.jar'
}
}
stage('Unit Test') {
steps {
script {
sh "mvn test"
}
}
}
}
tools {
maven 'M398'
}
}