Attempt to update/include submodules in final jar on Jenkins

This commit is contained in:
Redned 2019-11-29 21:05:04 -06:00 committed by GitHub
parent c91e8e1958
commit 5dad988c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -10,6 +10,7 @@ pipeline {
stages {
stage ('Build') {
steps {
sh 'git submodule update --init --recursive'
sh 'mvn clean package'
}
post {
@ -49,4 +50,4 @@ pipeline {
}
}
}
}
}