diff --git a/Jenkinsfile b/Jenkinsfile
index 6d1a6cb..97fbba8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,6 +28,7 @@ pipeline {
branch 'master'
branch 'release_*'
branch 'hotfix_release_*'
+ branch 'sonar_*'
allOf {
branch 'PR-*'
expression { env.CHANGE_BRANCH.startsWith("release_") }
@@ -55,6 +56,14 @@ pipeline {
sh 'mvn clean verify -U -P release-build'
}
}
+ stage('build-sonar') {
+ when {
+ branch 'sonar_*'
+ }
+ steps {
+ sh 'mvn clean verify -U -P sonar-build'
+ }
+ }
stage('sonarcloud') {
when {
allOf {
diff --git a/module-base/pom.xml b/module-base/pom.xml
index d7e7ea4..c46f912 100644
--- a/module-base/pom.xml
+++ b/module-base/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-workflow-close-step
- 24.08.1
+ 24.09
plugin-workflow-close-step-base
jar
diff --git a/module-gui/pom.xml b/module-gui/pom.xml
index 5e03d84..16c1c07 100644
--- a/module-gui/pom.xml
+++ b/module-gui/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-workflow-close-step
- 24.08.1
+ 24.09
plugin-workflow-close-step-gui
jar
diff --git a/pom.xml b/pom.xml
index 74e7a6a..a3876e4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow
workflow-base
- 24.08.1
+ 24.09
io.goobi.workflow.plugin