
hudson.plugins.scm_sync_configuration.scms.impl.ScmSyncNoSCM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm-sync-configuration Show documentation
Show all versions of scm-sync-configuration Show documentation
SCM Sync Configuration Hudson plugin is aimed at 2 main features : First, keep sync'ed your config.xml (and other ressources) hudson files with a SCM repository (backup), Secondly, track changes (and author) made on every file with commit messages.
The newest version!
package hudson.plugins.scm_sync_configuration.scms.impl;
import org.kohsuke.stapler.StaplerRequest;
import hudson.plugins.scm_sync_configuration.scms.SCM;
import hudson.plugins.scm_sync_configuration.scms.SCMCredentialConfiguration;
public class ScmSyncNoSCM extends SCM {
public ScmSyncNoSCM(){
super("None", "none/config.jelly", null, "/hudson/plugins/scm_sync_configuration/ScmSyncConfigurationPlugin/scms/none/url-help.jelly");
}
@Override
public String createScmUrlFromRequest(StaplerRequest req) {
return null;
}
@Override
public String extractScmUrlFrom(String scmUrl) {
return null;
}
@Override
public SCMCredentialConfiguration extractScmCredentials(
String scmRepositoryURL) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy