Commit 0f3a3b4b authored by hanbing's avatar hanbing

配置多模块构建

parent 3899e266
......@@ -18,12 +18,18 @@ pipeline {
}
stage('编译构建utc模块') {
steps {
sh 'mvn -pl signal-utc-service clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true'
sh '''
mvn install -DsendCredentialsOverHttp=true
mvn -pl signal-utc-service clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true'
'''
}
}
stage('编译构建control模块') {
steps {
sh 'mvn -pl signal-control-service clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true'
sh '''
mvn install -DsendCredentialsOverHttp=true
mvn -pl signal-control-service clean package -Dmaven.test.skip=true jib:build -DsendCredentialsOverHttp=true
'''
}
}
stage('删除utc模块镜像和容器') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment