Added Jenkinsfile

This commit is contained in:
LOOHP 2020-08-09 00:30:57 +08:00
parent 5e4cf7a4e5
commit 77adda5646
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('') {
steps {
build 'mvn clean install'
}
}
}
}