Skip to content

Commit

Permalink
Use java 11 & make Jenkins 2.361.1 the minimum version (#172)
Browse files Browse the repository at this point in the history
Use java 11 & make Jenkins 2.361.1 the minimum version
  • Loading branch information
Greybird authored Oct 1, 2022
1 parent a9b6285 commit 0b6a126
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
buildPlugin(
jenkinsVersions: [null, '2.332.4']
)
buildPlugin(configurations: [
[ platform: "linux", jdk: "11", jenkins: null ],
[ platform: "windows", jdk: "11", jenkins: null ],
[ platform: "linux", jdk: "11", jenkins: "2.361.1" ],
[ platform: "windows", jdk: "11", jenkins: "2.361.1" ]
])
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.332.4</jenkins.version>
<jenkins.version>2.361.1</jenkins.version>
<java.level>8</java.level>
<checkstyle.version>3.2.0</checkstyle.version>
</properties>
Expand All @@ -42,7 +42,7 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.332.x</artifactId>
<artifactId>bom-2.361.x</artifactId>
<version>1607.va_c1576527071</version>
<scope>import</scope>
<type>pom</type>
Expand Down

0 comments on commit 0b6a126

Please sign in to comment.