Skip to content

Commit

Permalink
Merge pull request #175 from jglick/bumps
Browse files Browse the repository at this point in the history
Update POM & BOM, test on Java 17
  • Loading branch information
jglick authored Apr 18, 2022
2 parents 915a692 + 0f3f165 commit 478792e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
buildPlugin(platforms: ['maven', 'windows'])
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: '17', jenkins: '2.343'],
[platform: 'windows', jdk: '8'],
])
19 changes: 8 additions & 11 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.39</version>
<version>4.40</version>
<relativePath />
</parent>

Expand All @@ -14,14 +14,12 @@
<packaging>hpi</packaging>

<name>Credentials Binding Plugin</name>
<description>Allows credentials to be bound to environment variables for use from miscellaneous build steps.
</description>
<url>https://github.com/jenkinsci/credentials-binding-plugin</url>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<properties>
<revision>1.28</revision>
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.319.1</jenkins.version>
<java.level>8</java.level>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
</properties>
<licenses>
<license>
Expand All @@ -30,10 +28,10 @@
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:https://github.com/${gitHubRepo}</connection>
<developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>

Expand All @@ -55,7 +53,7 @@
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.319.x</artifactId>
<version>1246.va_b_50630c1d19</version>
<version>1280.vd669827e38cd</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -65,7 +63,6 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
<version>1087.v16065d268466</version> <!-- TODO until in BOM -->
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down

0 comments on commit 478792e

Please sign in to comment.