Skip to content

Commit 69b0df0

Browse files
committed
Support Java 25
Signed-off-by: Alexander Brandes <mc.cache@web.de>
1 parent eefb80e commit 69b0df0

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ target
66
*.iws
77
*.iml
88
work
9+
.idea

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.8</version>
5+
<version>1.13</version>
66
</extension>
77
</extensions>

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ buildPlugin(
66
forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores
77
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
88
configurations: [
9-
[platform: 'linux', jdk: 17],
10-
[platform: 'windows', jdk: 17],
9+
[platform: 'linux', jdk: 25],
10+
[platform: 'windows', jdk: 21],
1111
])

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>5.12</version>
8+
<version>5.2102.v5f5fe09fccf1</version>
99
<relativePath />
1010
</parent>
1111

@@ -36,15 +36,15 @@
3636
<gitHubRepo>jenkinsci/urltrigger-plugin</gitHubRepo>
3737
<xtrigger.api.version>1.2</xtrigger.api.version>
3838
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
39-
<jenkins.baseline>2.479</jenkins.baseline>
39+
<jenkins.baseline>2.528</jenkins.baseline>
4040
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
4141
</properties>
4242

4343
<scm>
4444
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
4545
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
4646
<url>https://github.com/${gitHubRepo}</url>
47-
<tag>urltrigger-1.04</tag>
47+
<tag>${scmTag}</tag>
4848
</scm>
4949

5050
<distributionManagement>
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>io.jenkins.tools.bom</groupId>
6565
<artifactId>bom-${jenkins.baseline}.x</artifactId>
66-
<version>4669.v0e99c712a_30e</version>
66+
<version>5804.v80587a_38d937</version>
6767
<scope>import</scope>
6868
<type>pom</type>
6969
</dependency>

0 commit comments

Comments
 (0)