Skip to content

Commit f6ad2ec

Browse files
committed
chore(pom): Require 2.462.3
1 parent efb2682 commit f6ad2ec

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

Jenkinsfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
See the documentation for more options:
3+
https://github.com/jenkins-infra/pipeline-library/
4+
*/
5+
buildPlugin(
6+
forkCount: '1C', // Run a JVM per core in tests
7+
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
8+
configurations: [
9+
[platform: 'linux', jdk: 17],
10+
[platform: 'windows', jdk: 11]
11+
]
12+
)

pom.xml

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>4.78</version>
7+
<version>4.88</version>
88
<relativePath />
99
</parent>
1010

@@ -31,16 +31,18 @@
3131
</scm>
3232

3333
<properties>
34-
<jenkins.version>2.426</jenkins.version>
34+
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
35+
<jenkins.baseline>2.462</jenkins.baseline>
36+
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
3537
<spotless.check.skip>false</spotless.check.skip>
3638
</properties>
3739

3840
<dependencyManagement>
3941
<dependencies>
4042
<dependency>
4143
<groupId>io.jenkins.tools.bom</groupId>
42-
<artifactId>bom-2.426.x</artifactId>
43-
<version>2839.v003b_4d9d24fd</version>
44+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
45+
<version>4023.va_eeb_b_4e45f07</version>
4446
<type>pom</type>
4547
<scope>import</scope>
4648
</dependency>

0 commit comments

Comments
 (0)