Commit 91391b6 Dominick Leppich
committed
File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ pipeline {
28
28
branch ' master'
29
29
branch ' release_*'
30
30
branch ' hotfix_release_*'
31
+ branch ' sonar_*'
31
32
allOf {
32
33
branch ' PR-*'
33
34
expression { env. CHANGE_BRANCH . startsWith(" release_" ) }
@@ -55,6 +56,14 @@ pipeline {
55
56
sh ' mvn clean verify -U -P release-build'
56
57
}
57
58
}
59
+ stage(' build-sonar' ) {
60
+ when {
61
+ branch ' sonar_*'
62
+ }
63
+ steps {
64
+ sh ' mvn clean verify -U -P sonar-build'
65
+ }
66
+ }
58
67
stage(' sonarcloud' ) {
59
68
when {
60
69
allOf {
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >io.goobi.workflow.plugin</groupId >
5
5
<artifactId >plugin-opac-pica</artifactId >
6
- <version >24.08.1 </version >
6
+ <version >24.09 </version >
7
7
</parent >
8
8
<artifactId >plugin-opac-pica-base</artifactId >
9
9
<packaging >jar</packaging >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >io.goobi.workflow</groupId >
5
5
<artifactId >workflow-base</artifactId >
6
- <version >24.08.1 </version >
6
+ <version >24.09 </version >
7
7
<relativePath />
8
8
</parent >
9
9
<groupId >io.goobi.workflow.plugin</groupId >
You can’t perform that action at this time.
0 commit comments