Skip to content

Commit

Permalink
chore(dependencies) Bump plugin from 4.51 to 4.53
Browse files Browse the repository at this point in the history
Bump plugin from 4.51 to 4.53
  • Loading branch information
gounthar authored Dec 12, 2022
2 parents 5fa034a + e9fb171 commit 05a86f0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
buildPlugin(platforms: ['linux', 'windows'])
/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
buildPlugin(
// Container agents start faster and are easier to administer
useContainerAgent: true,
// Show failures on all configurations
failFast: false,
// Opt-in to the Artifact Caching Proxy, to be removed when it will be in opt-out.
// See https://github.com/jenkins-infra/helpdesk/issues/2752 for more details and updates.
artifactCachingProxyEnabled: true,
// Test Java 8 with default Jenkins version, Java 11 with a recent LTS, Java 17 even more recent
configurations: [
[platform: 'linux', jdk: '17', jenkins: '2.375'],
[platform: 'linux', jdk: '11', jenkins: '2.361.4'],
[platform: 'windows', jdk: '11']
]
)
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.51</version>
<version>4.53</version>
<relativePath />
</parent>

<properties>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<jenkins.version>2.346.3</jenkins.version>
<jenkins.version>2.361.4</jenkins.version>
</properties>

<dependencyManagement>
<dependencies>
<!-- https://github.com/jenkinsci/bom -->
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.346.x</artifactId>
<artifactId>bom-2.361.x</artifactId>
<version>1723.vcb_9fee52c9fc</version>
<scope>import</scope>
<type>pom</type>
Expand Down

0 comments on commit 05a86f0

Please sign in to comment.