Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require Java 11 and Jenkins 2.361.4 or newer #96

Merged
Merged
7 changes: 1 addition & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,5 @@
buildPlugin(useContainerAgent: true,
configurations: [
[platform: 'linux', jdk: '11'],
[platform: 'windows', jdk: '8'],

// testing the Guava & Guice bumps
// https://github.com/jenkinsci/jenkins/pull/5707
// https://github.com/jenkinsci/jenkins/pull/5858
[ platform: "linux", jdk: "8", jenkins: '2.321' ]
[ platform: 'windows', jdk: '17', jenkins: '2.387.2' ]
])
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.47</version>
<version>4.59</version>
<relativePath/>
</parent>

Expand All @@ -25,7 +25,7 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<jenkins.version>2.303.3</jenkins.version>
<jenkins.version>2.361.4</jenkins.version>
VignanMudedla marked this conversation as resolved.
Show resolved Hide resolved
<spotbugs.effort>Max</spotbugs.effort>
<spotbugs.threshold>Low</spotbugs.threshold>
</properties>
Expand All @@ -34,8 +34,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.303.x</artifactId>
<version>1500.ve4d05cd32975</version>
<artifactId>bom-2.361.x</artifactId>
<version>1981.v17df70e84a_a_1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down