Skip to content

Commit ecdcbb3

Browse files
author
Dominick Leppich
committed
Merge pull request 'Release v24.09' (#15) from release_24.09 into master
2 parents 4474d73 + 78f3f90 commit ecdcbb3

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
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-pdf-extraction</artifactId>
6-
<version>24.08.1</version>
6+
<version>24.09</version>
77
</parent>
88
<artifactId>plugin-step-pdf-extraction-base</artifactId>
99
<packaging>jar</packaging>

module-base/src/main/java/de/intranda/goobi/plugins/PDFExtractionPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private void setProperty(String propertyName, String value) {
290290
if (property == null) {
291291
property = new Processproperty();
292292
property.setTitel(propertyName);
293-
property.setContainer(0);
293+
property.setContainer("0");
294294
property.setCreationDate(Date.from(Instant.now()));
295295
property.setProzess(this.step.getProzess());
296296
properties.add(property);

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)