Skip to content

Commit 48bc700

Browse files
authored
Merge pull request #89 from jimklimov/pom-bump
Pom bump
2 parents 87bf5d4 + 37e3a58 commit 48bc700

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

Jenkinsfile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@
33
* https://github.com/jenkins-infra/pipeline-library/
44
*/
55
buildPlugin(useContainerAgent: true, configurations: [
6-
// Test the common case (i.e., a recent LTS release) on both Linux and Windows.
6+
// Test the common case (i.e., a recent LTS release) on both Linux and Windows
7+
// with same core version as the lowest baseline requested by pom.xml
78
[ platform: 'linux', jdk: '11', jenkins: '2.361.1' ],
89
[ platform: 'windows', jdk: '11', jenkins: '2.361.1' ],
910

1011
// Test the bleeding edge of the compatibility spectrum (i.e., the latest supported Java runtime).
1112
// see also https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/
12-
[ platform: 'linux', jdk: '17', jenkins: '2.361.2' ],
13+
// NOTE: 2.475+ introduced other breaking changes to ecosystem
14+
//[ platform: 'linux', jdk: '17', jenkins: '2.479.1' ],
15+
16+
// NOTE: LTS https://www.jenkins.io/changelog-stable/#v2.462.3
17+
// is the last LTS release to support Java 11
18+
[ platform: 'linux', jdk: '11', jenkins: '2.462.3' ],
19+
[ platform: 'linux', jdk: '17', jenkins: '2.462.3' ],
20+
[ platform: 'linux', jdk: '21', jenkins: '2.462.3' ],
1321
])

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
45
<parent>
56
<groupId>org.jenkins-ci.plugins</groupId>
67
<artifactId>plugin</artifactId>
78
<version>4.88</version>
89
<relativePath />
910
</parent>
11+
1012
<groupId>io.jenkins.plugins</groupId>
1113
<artifactId>conflict-aware-ondemand-strategy</artifactId>
1214
<version>${revision}.${changelist}</version>
1315
<packaging>hpi</packaging>
16+
1417
<properties>
1518
<revision>2</revision>
1619
<changelist>999999-SNAPSHOT</changelist>
@@ -20,8 +23,14 @@
2023
<spotbugs.effort>Max</spotbugs.effort>
2124
<spotbugs.threshold>Low</spotbugs.threshold>
2225
</properties>
26+
2327
<name>Conflict Aware On Demand Retention Strategy Plugin</name>
28+
<description>Extension of the standard "On Demand" launch and
29+
retention strategy for Jenkins build agents such as the
30+
SSH Build Agents, limiting the resource stress on a single
31+
system hosting several such agents.</description>
2432
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
33+
<inceptionYear>2021</inceptionYear>
2534

2635
<dependencyManagement>
2736
<dependencies>

0 commit comments

Comments
 (0)