diff --git a/Jenkinsfile b/Jenkinsfile
index 13cb478..2b2e562 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -55,13 +55,20 @@ pipeline {
}
stage('sonarcloud') {
when {
- anyOf {
- branch 'master'
- branch 'release_*'
- branch 'sonar_*'
- allOf {
- branch 'PR-*'
- expression { env.CHANGE_BRANCH.startsWith("release_") }
+ allOf {
+ anyOf {
+ branch 'master'
+ branch 'release_*'
+ branch 'sonar_*'
+ allOf {
+ branch 'PR-*'
+ expression { env.CHANGE_BRANCH.startsWith("release_") }
+ }
+ }
+ not {
+ expression {
+ return fileExists('DO_NOT_PUBLISH')
+ }
}
}
}
@@ -124,7 +131,6 @@ pipeline {
enabledForFailure: true, aggregatingResults: false,
tools: [checkStyle(pattern: 'target/checkstyle-result.xml', reportEncoding: 'UTF-8')]
)
- dependencyCheckPublisher pattern: 'target/dependency-check-report.xml'
}
success {
archiveArtifacts artifacts: '**/target/*.jar, install/*', fingerprint: true, onlyIfSuccessful: true
diff --git a/module-base/pom.xml b/module-base/pom.xml
index 6ff703b..2a16bb6 100644
--- a/module-base/pom.xml
+++ b/module-base/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-workflow-hu-importer
- 24.04.2
+ 24.04.30
plugin-workflow-hu-importer-base
jar
diff --git a/module-gui/pom.xml b/module-gui/pom.xml
index 0717a13..8ee4ace 100644
--- a/module-gui/pom.xml
+++ b/module-gui/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow.plugin
plugin-workflow-hu-importer
- 24.04.2
+ 24.04.30
plugin-workflow-hu-importer-gui
jar
diff --git a/pom.xml b/pom.xml
index b2c6503..79d646e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
io.goobi.workflow
workflow-base
- 24.04.2
+ 24.04.30
io.goobi.workflow.plugin