Init Submodules with Maven

This commit is contained in:
Zoe 2021-01-21 19:01:17 -06:00
parent 02a1007450
commit dfa3455d23

8
Jenkinsfile vendored
View File

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