Skip to content

Commit

Permalink
Bump plugin from 4.50 to 4.53 (#78)
Browse files Browse the repository at this point in the history
* 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]>

* Update parent pom from 4.50 to 4.53 and to Java 11

* Disable Javadoc for now as generating failing on groovy files

* Update pom.xml

* Update javadoc plugin config to fix doc generation error

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 6b777ea commit c102004
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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]
])
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.50</version>
<version>4.53</version>
</parent>
<artifactId>ssh-steps</artifactId>
<version>${revision}.${changelist}</version>
Expand All @@ -17,7 +17,7 @@
<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>
<groovy.ssh.version>2.10.1</groovy.ssh.version>
<lombok.version>1.18.24</lombok.version>
Expand Down Expand Up @@ -158,6 +158,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<sourcepath>${project.basedir}/src/main/java;${project.basedir}/target/generated-sources/annotations;${project.basedir}/target/generated-sources/groovy-stubs</sourcepath>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
Expand Down

0 comments on commit c102004

Please sign in to comment.