Skip to content

Commit

Permalink
[JENKINS-66253] - update the minimum Jenkins version from 2.235.1 to …
Browse files Browse the repository at this point in the history
…2.263.1 (#42)
  • Loading branch information
Onyimatics authored Jul 30, 2021
1 parent f3beb9d commit f75ee1d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ work/
/target
.settings/
.classpath
.project
.project
**/.DS_Store
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<revision>1.23</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/publish-over-ssh-plugin</gitHubRepo>
<jenkins.version>2.235.1</jenkins.version>
<jenkins.version>2.263.1</jenkins.version>
<java.level>8</java.level>
</properties>

Expand All @@ -67,8 +67,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.235.x</artifactId>
<version>16</version>
<artifactId>bom-2.263.x</artifactId>
<version>887.vae9c8ac09ff7</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package jenkins.plugins.publish_over_ssh;

import hudson.Launcher;
import hudson.model.AbstractBuild;
import hudson.model.BuildListener;
import hudson.model.Run;
Expand Down Expand Up @@ -53,7 +54,8 @@ protected boolean isBuildGoodEnoughToRun(final Run<?, ?> build, final PrintStrea
}

public boolean perform(final AbstractBuild<?, ?> build, final BuildListener listener) throws InterruptedException, IOException {
return perform(build, null, listener);
Launcher nullLauncher = null;
return perform(build, nullLauncher, listener);
}

public boolean equals(final Object that) {
Expand Down

0 comments on commit f75ee1d

Please sign in to comment.