Skip to content

Commit

Permalink
Upgrade to Support mandatory Java 11 to support latest Jenkins version (
Browse files Browse the repository at this point in the history
#167)

* Bump plugin from 4.50 to 4.53

Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.50 to 4.53.
- [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
- [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
- [Commits](jenkinsci/plugin-pom@plugin-4.50...plugin-4.53)

---
updated-dependencies:
- dependency-name: org.jenkins-ci.plugins:plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Disabling Javadoc as there were few issues with lombok annotations being part of docs

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Naresh Rayapati <[email protected]>
  • Loading branch information
dependabot[bot] and nrayapati authored Jan 22, 2023
1 parent 5bed0b1 commit c35a8a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */

buildPlugin(platforms: ['linux'])
buildPlugin(
useContainerAgent: true,
configurations: [
[platform: 'linux', jdk: 11]
])
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<parent>
<artifactId>plugin</artifactId>
<groupId>org.jenkins-ci.plugins</groupId>
<version>4.50</version>
<version>4.53</version>
</parent>
<artifactId>jira-steps</artifactId>
<artifactId>jira-steps</artifactId>
<version>${revision}.${changelist}</version>
<packaging>hpi</packaging>
<name>JIRA Pipeline Steps</name>
Expand All @@ -17,13 +17,14 @@
<revision>2.0</revision>
<changelist>999999-SNAPSHOT</changelist>
<java.level>8</java.level>
<jenkins.version>2.332.2</jenkins.version>
<jenkins.version>2.361.1</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<assertj-core.version>3.23.1</assertj-core.version>
<google.oauth.version>1.34.1</google.oauth.version>
<lombok.version>1.18.24</lombok.version>
<retrofit2.version>2.9.0</retrofit2.version>
<signpost.oauth.version>2.1.1</signpost.oauth.version>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<licenses>
<license>
Expand Down Expand Up @@ -156,6 +157,7 @@
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<executions>
<execution>
Expand All @@ -171,14 +173,13 @@
</goals>
</execution>
</executions>
<groupId>org.codehaus.gmavenplus</groupId>
</plugin>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<configuration>
<compatibleSinceVersion>1.5.0</compatibleSinceVersion>
</configuration>
<groupId>org.jenkins-ci.tools</groupId>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit c35a8a5

Please sign in to comment.