Skip to content

Commit 5e2756d

Browse files
committed
Merge remote-tracking branch 'origin/main' into jdk25
2 parents f7391db + bbfad60 commit 5e2756d

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.github/workflows/quality-monitor-jenkins.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ jobs:
4040
env:
4141
BROWSER: chrome-container
4242
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
43-
run: mvn -V --color always -ntp clean verify -Pci -Powasp | tee maven.log
43+
run: |
44+
mvn -V --color always -ntp clean verify -Pci -Powasp | tee maven.log
45+
if [ "${PIPESTATUS[0]}" != "0" ]; then
46+
exit 1;
47+
fi
4448
- name: Extract pull request number
4549
uses: jwalton/gh-find-current-pr@v1
4650
id: pr

plugin/pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>io.jenkins.plugins</groupId>
7575
<artifactId>plugin-util-api</artifactId>
76-
<version>6.1183.vdfd884091c0e</version>
76+
<version>6.1197.v0503eb_85ec2d</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.jenkins-ci.plugins</groupId>
@@ -235,17 +235,22 @@
235235
<dependency>
236236
<groupId>io.jenkins.plugins</groupId>
237237
<artifactId>plugin-util-api</artifactId>
238-
<version>6.1183.vdfd884091c0e</version>
238+
<version>6.1197.v0503eb_85ec2d</version>
239239
</dependency>
240240
<dependency>
241241
<groupId>io.jenkins.plugins</groupId>
242242
<artifactId>plugin-util-api</artifactId>
243-
<version>6.1183.vdfd884091c0e</version>
243+
<version>6.1197.v0503eb_85ec2d</version>
244244
</dependency>
245245
<dependency>
246246
<groupId>io.jenkins.plugins</groupId>
247247
<artifactId>plugin-util-api</artifactId>
248-
<version>6.1183.vdfd884091c0e</version>
248+
<version>6.1197.v0503eb_85ec2d</version>
249+
</dependency>
250+
<dependency>
251+
<groupId>io.jenkins.plugins</groupId>
252+
<artifactId>plugin-util-api</artifactId>
253+
<version>6.1197.v0503eb_85ec2d</version>
249254
</dependency>
250255
</dependencies>
251256
</dependencyManagement>

ui-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>edu.hm.hafner</groupId>
77
<artifactId>codingstyle-pom</artifactId>
8-
<version>5.35.0</version>
8+
<version>5.36.0</version>
99
<relativePath/>
1010
</parent>
1111

@@ -16,7 +16,7 @@
1616
<name>UI Tests of Git Forensics Plugin</name>
1717

1818
<properties>
19-
<jenkins.version>2.528</jenkins.version>
19+
<jenkins.version>2.529</jenkins.version>
2020
<hpi-plugin.version>3.1762.vd3ff902a_5b_c4</hpi-plugin.version>
2121
<json-smart.version>2.3</json-smart.version>
2222
<json-unit-assertj.version>4.1.1</json-unit-assertj.version>

0 commit comments

Comments
 (0)