Skip to content

Commit

Permalink
Merge pull request #171 from jenkinsci/dependabot/maven/master/org.je…
Browse files Browse the repository at this point in the history
…nkins-ci.plugins-plugin-4.52
  • Loading branch information
dependabot[bot] authored Dec 7, 2022
2 parents 5a49f85 + c4d3cdf commit 8cc7137
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
17 changes: 15 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
// Builds the plugin using https://github.com/jenkins-infra/pipeline-library
buildPlugin(/**TODO: Update Plugin POM: buildPlugin.recommendedConfigurations()**/)
#!/usr/bin/env groovy

/* `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,
// Test Java 11 with a recent LTS, Java 17 even more recent
configurations: [
[platform: 'linux', jdk: '17', jenkins: '2.380'],
[platform: 'linux', jdk: '11', jenkins: '2.375.1'],
[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,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.51</version>
<version>4.52</version>
<relativePath/>
</parent>
<artifactId>configurationslicing</artifactId>
Expand Down Expand Up @@ -32,13 +32,13 @@
<spotbugs.failOnError>false</spotbugs.failOnError>
<spotbugs.excludeFilterFile>suppressed-spotbug-errors.xml</spotbugs.excludeFilterFile>
<java.level>8</java.level>
<jenkins.version>2.332.4</jenkins.version>
<jenkins.version>2.361.4</jenkins.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.332.x</artifactId>
<artifactId>bom-2.361.x</artifactId>
<version>1723.vcb_9fee52c9fc</version>
<type>pom</type>
<scope>import</scope>
Expand Down

0 comments on commit 8cc7137

Please sign in to comment.