hudson.scm.SVNRevisionState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subversion Show documentation
Show all versions of subversion Show documentation
Integrates Hudson with Subversion SCM
package hudson.scm;
import java.io.Serializable;
import java.util.Map;
/**
* {@link SCMRevisionState} for {@link SubversionSCM}. {@link Serializable} since we compute
* this remote.
*/
final class SVNRevisionState extends SCMRevisionState implements Serializable {
private static final long serialVersionUID = 1L;
/**
* All the remote locations that we checked out. This includes those that are specified
* explicitly via {@link SubversionSCM#getLocations()} as well as those that
* are implicitly pulled in via svn:externals, but it excludes those locations that
* are added via svn:externals in a way that fixes revisions.
*/
final Map revisions;
SVNRevisionState(Map revisions) {
this.revisions = revisions;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy