Init Submodules with Maven

This commit is contained in:
Zoe 2021-01-21 19:01:17 -06:00
parent 02a1007450
commit dfa3455d23
1 changed files with 7 additions and 1 deletions

8
Jenkinsfile vendored
View File

@ -13,7 +13,13 @@ pipeline {
}
stage('Init project & submodules') {
steps {
sh './gradlew initGitSubmodules'
withMaven(
maven: '3',
mavenLocalRepo: '.repository',
publisherStrategy: 'EXPLICIT',
) {
sh './gradlew initGitSubmodules'
}
}
}
stage('Decompile & apply patches') {