use of org.apache.maven.scm.provider.tfs.command.TfsStatusCommand in project maven-scm by apache.
the class TfsScmProvider method status.
protected StatusScmResult status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
TfsStatusCommand command = new TfsStatusCommand();
command.setLogger(getLogger());
return (StatusScmResult) command.execute(repository, fileSet, parameters);
}
Aggregations