mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 22:15:50 +00:00
Added Jenkinsfile
This commit is contained in:
parent
8e4f0abfa2
commit
673ba38297
1 changed files with 10 additions and 0 deletions
10
Jenkinsfile
vendored
Normal file
10
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
bat(script: 'bat mvn clean install -Dmaven.test.skip=true', returnStatus: true, returnStdout: true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue