Init Submodules with Maven

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

6
Jenkinsfile vendored
View File

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