Skip to content
Snippets Groups Projects
Commit 7f883039 authored by OZGCloud's avatar OZGCloud
Browse files

Merge branch 'master' of git.ozg-sh.de:mgm/goofy

parents a3a006b3 eb66c195
No related branches found
No related tags found
No related merge requests found
...@@ -100,14 +100,13 @@ pipeline { ...@@ -100,14 +100,13 @@ pipeline {
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn --version' sh 'mvn --version'
sh 'mvn -s $MAVEN_SETTINGS -pl -goofy-client clean install spring-boot:build-image -Dmaven.wagon.http.retryHandler.count=3' sh 'mvn -s $MAVEN_SETTINGS -pl -goofy-client clean install spring-boot:build-image -Dmaven.wagon.http.retryHandler.count=3'
}
script { script {
try { try {
if (env.BRANCH_NAME == 'master') { if (env.BRANCH_NAME == 'master') {
dir('goofy-server'){ dir('goofy-server'){
withSonarQubeEnv('sonarqube-ozg-sh'){ withSonarQubeEnv('sonarqube-ozg-sh'){
sh 'mvn sonar:sonar' sh 'mvn -s $MAVEN_SETTINGS sonar:sonar'
} }
} }
} }
...@@ -117,6 +116,7 @@ pipeline { ...@@ -117,6 +116,7 @@ pipeline {
} }
} }
} }
}
post { post {
always{ always{
junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true junit testResults: '**/target/surefire-reports/*.xml', skipPublishingChecks: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment