Search in sources :

Example 1 with StarteamAddCommand

use of org.apache.maven.scm.provider.starteam.command.add.StarteamAddCommand in project maven-scm by apache.

the class StarteamScmProvider method add.

/**
 * {@inheritDoc}
 */
public AddScmResult add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException {
    fileSet = fixUpScmFileSetAbsoluteFilePath(fileSet);
    StarteamAddCommand command = new StarteamAddCommand();
    command.setLogger(getLogger());
    return (AddScmResult) command.execute(repository, fileSet, parameters);
}
Also used : AddScmResult(org.apache.maven.scm.command.add.AddScmResult) StarteamAddCommand(org.apache.maven.scm.provider.starteam.command.add.StarteamAddCommand)

Aggregations

AddScmResult (org.apache.maven.scm.command.add.AddScmResult)1 StarteamAddCommand (org.apache.maven.scm.provider.starteam.command.add.StarteamAddCommand)1