Skip to content

Commit 38d3195

Browse files
author
Dominick Leppich
committed
Merge pull request 'Release v24.09' (#11) from release_24.09 into master
2 parents 002c5d2 + ecf86c9 commit 38d3195

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Jenkinsfile

+9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pipeline {
2828
branch 'master'
2929
branch 'release_*'
3030
branch 'hotfix_release_*'
31+
branch 'sonar_*'
3132
allOf {
3233
branch 'PR-*'
3334
expression { env.CHANGE_BRANCH.startsWith("release_") }
@@ -55,6 +56,14 @@ pipeline {
5556
sh 'mvn clean verify -U -P release-build'
5657
}
5758
}
59+
stage('build-sonar') {
60+
when {
61+
branch 'sonar_*'
62+
}
63+
steps {
64+
sh 'mvn clean verify -U -P sonar-build'
65+
}
66+
}
5867
stage('sonarcloud') {
5968
when {
6069
allOf {

module-base/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.goobi.workflow.plugin</groupId>
55
<artifactId>plugin-step-export-package</artifactId>
6-
<version>24.08.1</version>
6+
<version>24.09</version>
77
</parent>
88
<artifactId>plugin-step-export-package-base</artifactId>
99
<packaging>jar</packaging>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.goobi.workflow</groupId>
55
<artifactId>workflow-base</artifactId>
6-
<version>24.08.1</version>
6+
<version>24.09</version>
77
<relativePath />
88
</parent>
99
<groupId>io.goobi.workflow.plugin</groupId>

0 commit comments

Comments
 (0)