Skip to content

Commit

Permalink
Merge pull request #4 from key-consulting/master
Browse files Browse the repository at this point in the history
[JENKINS-17058] add readResolve on BapSshHostConfiguration, fix dep
  • Loading branch information
slide committed Dec 16, 2013
2 parents c591bae + 8667211 commit dbc15b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>publish-over</artifactId>
<version>0.18-SNAPSHOT</version>
<version>0.17</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Expand Up @@ -291,4 +291,9 @@ public String toString() {
return addToToString(new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE)).toString();
}

public Object readResolve()
{
return super.readResolve();
}

}
Expand Up @@ -78,7 +78,13 @@ public BapSshHostConfiguration getConfiguration(final String name) {
}

@Extension
public static class Descriptor extends BapSshPublisherPluginDescriptor { }
public static class Descriptor extends BapSshPublisherPluginDescriptor {
@Override
public Object readResolve()
{
return super.readResolve();
}
}

/** prevent xstream noise */
@Deprecated
Expand Down

0 comments on commit dbc15b7

Please sign in to comment.