use of org.apache.maven.scm.provider.bazaar.command.remove.BazaarRemoveCommand in project maven-scm by apache.
the class BazaarScmProvider method remove.
/**
* {@inheritDoc}
*/
public RemoveScmResult remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
BazaarRemoveCommand command = new BazaarRemoveCommand();
command.setLogger(getLogger());
return (RemoveScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations