mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +00:00
Create jenkinsfile
This commit is contained in:
parent
adab01ef62
commit
94beb87d39
1 changed files with 20 additions and 0 deletions
20
jenkinsfile
Normal file
20
jenkinsfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
node {
|
||||
|
||||
stage('SCM') {
|
||||
// git clone
|
||||
git 'https://github.com/openmrs/openmrs-core.git'
|
||||
}
|
||||
|
||||
stage ('build the packages') {
|
||||
// mvn package
|
||||
sh 'mvn package'
|
||||
}
|
||||
|
||||
|
||||
|
||||
//stage ('archival') {
|
||||
// archiving artifacts
|
||||
//archive 'target/*.jar'
|
||||
//}
|
||||
|
||||
}
|
Loading…
Reference in a new issue