Skip to content

Commit

Permalink
Merge pull request #340 from sghill/modernize
Browse files Browse the repository at this point in the history
Modernize to latest versions supported by Java 8
  • Loading branch information
sghill authored Aug 16, 2023
2 parents 5940a3d + 1732b9c commit b37b1b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
buildPlugin()
buildPlugin(useContainerAgent: true, configurations: [
[ platform: 'linux', jdk: '11' ],
[ platform: 'windows', jdk: '11' ],
[ platform: 'linux', jdk: '17' ],
])
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.40</version>
<version>4.51</version>
<relativePath />
</parent>
<packaging>hpi</packaging>
<properties>
<revision>1.29</revision>
<changelist>-SNAPSHOT</changelist>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<jenkins.version>2.303.1</jenkins.version>
<java.level>8</java.level>
<jenkins.version>2.346.3</jenkins.version>
<hpi.compatibleSinceVersion>1.9</hpi.compatibleSinceVersion>
</properties>
<artifactId>stashNotifier</artifactId>
Expand Down Expand Up @@ -81,8 +80,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.303.x</artifactId>
<version>1382.v7d694476f340</version>
<artifactId>bom-2.346.x</artifactId>
<version>1763.v092b_8980a_f5e</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down

0 comments on commit b37b1b7

Please sign in to comment.