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 4c7b6cc..03ed53c 100644
--- a/module-base/pom.xml
+++ b/module-base/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-step-transcription
- 24.08.1
+ 24.09
plugin-step-transcription-base
jar
diff --git a/module-gui/pom.xml b/module-gui/pom.xml
index 5794910..082b9fd 100644
--- a/module-gui/pom.xml
+++ b/module-gui/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-step-transcription
- 24.08.1
+ 24.09
plugin-step-transcription-gui
jar
diff --git a/pom.xml b/pom.xml
index 70e7411..a39ef3f 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