Skip to content
Snippets Groups Projects
Commit 0e14d13b authored by OZGCloud's avatar OZGCloud
Browse files

OZG-1518 fix build issue - build dependencies first

parent 12fd5362
Branches
Tags
No related merge requests found
...@@ -49,6 +49,23 @@ pipeline { ...@@ -49,6 +49,23 @@ pipeline {
} }
} }
}*/ }*/
stage('Build Kop-Common Dependencies') {
steps {
script {
FAILED_STAGE=env.STAGE_NAME
}
container("maven-17"){
dir('kop-common-dependencies') {
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn --version'
sh 'mvn -s $MAVEN_SETTINGS clean install'
}
}
}
}
}
stage('Build Kop-Common') { stage('Build Kop-Common') {
steps { steps {
script { script {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment