use of org.apache.maven.scm.provider.perforce.command.edit.PerforceEditCommand in project maven-scm by apache.
the class PerforceScmProvider method edit.
protected EditScmResult edit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters params) throws ScmException {
PerforceEditCommand command = new PerforceEditCommand();
command.setLogger(getLogger());
return (EditScmResult) command.execute(repository, fileSet, params);
}
Aggregations