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 22e13dc..b598cba 100644
--- a/module-base/pom.xml
+++ b/module-base/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-export-fedora
- 24.08.1
+ 24.09
plugin-export-fedora-base
jar
diff --git a/pom.xml b/pom.xml
index 321ce35..77ab808 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