Skip to content

Commit

Permalink
feat: Remove support for Java 8 # (#55)
Browse files Browse the repository at this point in the history
* chore: add vscode to the gitignore

* fix: remove deprecated java.level property

* feta: bump JEnkins core to 2.346.2

* Update pom.xml

Co-authored-by: Jesse Glick <jglick@cloudbees.com>

* fix: compile for JDK 11

* Update pom.xml

Co-authored-by: James Nord <jtnord@users.noreply.github.com>

* chore: bump version to 2.x.x

Co-authored-by: Jesse Glick <jglick@cloudbees.com>
Co-authored-by: James Nord <jtnord@users.noreply.github.com>
  • Loading branch information
3 people authored Aug 26, 2022
1 parent 9e7860a commit 2a32367
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ target
.settings

work
bin
bin
.vscode
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
// Builds a module using https://github.com/jenkins-infra/pipeline-library
buildPlugin(platforms: ['linux'])
buildPlugin(
configurations: [
[platform: 'linux', jdk: '11']
])
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
</scm>

<properties>
<revision>1</revision>
<revision>2</revision>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/trilead-api-plugin</gitHubRepo>
<jenkins.version>2.319</jenkins.version>
<java.level>8</java.level>
<jenkins.version>2.361</jenkins.version>
<hpi.compatibleSinceVersion>2.0.0</hpi.compatibleSinceVersion>
</properties>

<repositories>
Expand All @@ -73,8 +73,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.319.x</artifactId>
<version>1508.v4b_d09ff0e893</version>
<artifactId>bom-2.361.x</artifactId>
<version>1595.v8c71c13cc3a_9</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit 2a32367

Please sign in to comment.