Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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