Uses of Interface
org.apache.maven.scm.ScmVersion
-
-
Uses of ScmVersion in org.apache.maven.scm
Classes in org.apache.maven.scm that implement ScmVersion Modifier and Type Class Description classAbstractScmVersionclassScmBranchclassScmRevisionclassScmTagMethods in org.apache.maven.scm that return ScmVersion Modifier and Type Method Description ScmVersionCommandParameters. getScmVersion(CommandParameter parameter)Return the parameter value as ScmVersion.ScmVersionCommandParameters. getScmVersion(CommandParameter parameter, ScmVersion defaultValue)Return the parameter value as ScmVersion or the default value.Methods in org.apache.maven.scm with parameters of type ScmVersion Modifier and Type Method Description ScmVersionCommandParameters. getScmVersion(CommandParameter parameter, ScmVersion defaultValue)Return the parameter value as ScmVersion or the default value.voidCommandParameters. setScmVersion(CommandParameter parameter, ScmVersion scmVersion)Set a parameter value. -
Uses of ScmVersion in org.apache.maven.scm.command.changelog
Methods in org.apache.maven.scm.command.changelog that return ScmVersion Modifier and Type Method Description ScmVersionChangeLogScmRequest. getEndRevision()ScmVersionChangeLogSet. getEndVersion()Returns the end version (revision/branch/label) for this set.ScmVersionChangeLogScmRequest. getRevision()ScmVersionChangeLogScmRequest. getStartRevision()ScmVersionChangeLogSet. getStartVersion()Returns the start version (revision/branch/label) for this set.Methods in org.apache.maven.scm.command.changelog with parameters of type ScmVersion Modifier and Type Method Description protected ChangeLogScmResultAbstractChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)Deprecated.protected ChangeLogScmResultAbstractChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, String datePattern)Deprecated.voidChangeLogScmRequest. setEndRevision(ScmVersion endRevision)voidChangeLogSet. setEndVersion(ScmVersion endVersion)voidChangeLogScmRequest. setRevision(ScmVersion revision)voidChangeLogScmRequest. setStartRevision(ScmVersion startRevision)voidChangeLogSet. setStartVersion(ScmVersion startVersion) -
Uses of ScmVersion in org.apache.maven.scm.command.checkin
Methods in org.apache.maven.scm.command.checkin with parameters of type ScmVersion Modifier and Type Method Description protected abstract CheckInScmResultAbstractCheckInCommand. executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, String message, ScmVersion scmVersion)protected CheckInScmResultAbstractCheckInCommand. executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, String message, ScmVersion scmVersion, CommandParameters.SignOption signOption) -
Uses of ScmVersion in org.apache.maven.scm.command.checkout
Methods in org.apache.maven.scm.command.checkout with parameters of type ScmVersion Modifier and Type Method Description protected CheckOutScmResultAbstractCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)Execute Check out command line in a recursive check out way.protected abstract CheckOutScmResultAbstractCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive, boolean shallow)Execute Check out command line. -
Uses of ScmVersion in org.apache.maven.scm.command.diff
Methods in org.apache.maven.scm.command.diff with parameters of type ScmVersion Modifier and Type Method Description protected abstract DiffScmResultAbstractDiffCommand. executeDiffCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision) -
Uses of ScmVersion in org.apache.maven.scm.command.export
Methods in org.apache.maven.scm.command.export with parameters of type ScmVersion Modifier and Type Method Description protected abstract ExportScmResultAbstractExportCommand. executeExportCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String outputDirectory) -
Uses of ScmVersion in org.apache.maven.scm.command.list
Methods in org.apache.maven.scm.command.list with parameters of type ScmVersion Modifier and Type Method Description protected abstract ListScmResultAbstractListCommand. executeListCommand(ScmProviderRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion scmVersion)List contents of the remote repository. -
Uses of ScmVersion in org.apache.maven.scm.command.update
Methods in org.apache.maven.scm.command.update with parameters of type ScmVersion Modifier and Type Method Description protected abstract UpdateScmResultAbstractUpdateCommand. executeUpdateCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion) -
Uses of ScmVersion in org.apache.maven.scm.manager
Methods in org.apache.maven.scm.manager with parameters of type ScmVersion Modifier and Type Method Description ChangeLogScmResultAbstractScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Returns the changes that have happend in the source control system between two tags.ChangeLogScmResultAbstractScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)Returns the changes that have happend in the source control system between two tags.ChangeLogScmResultScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Deprecated.ChangeLogScmResultScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)Deprecated.CheckInScmResultAbstractScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)Save the changes you have done into the repository.CheckInScmResultScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)Save the changes you have done into the repository.CheckOutScmResultAbstractScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create a copy of the repository on your local machine.CheckOutScmResultAbstractScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive)Create a copy of the repository on your local machine.CheckOutScmResultScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create a copy of the repository on your local machine.CheckOutScmResultScmManager. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)Create a copy of the repository on your local machine.DiffScmResultAbstractScmManager. diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Create a diff between two branch/tag/revision.DiffScmResultScmManager. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)Create a diff between two branch/tag/revision.ExportScmResultAbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create an exported copy of the repository on your local machine.ExportScmResultAbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)Create an exported copy of the repository on your local machine.ExportScmResultScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create an exported copy of the repository on your local machine.ExportScmResultScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)Create an exported copy of the repository on your local machine.ListScmResultAbstractScmManager. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)List each element (files and directories) of fileSet as they exist in the repository.ListScmResultScmManager. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)List each element (files and directories) of fileSet as they exist in the repository.UpdateScmResultAbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)Updates the copy on the local machine with the changes in the repository. -
Uses of ScmVersion in org.apache.maven.scm.provider
Methods in org.apache.maven.scm.provider with parameters of type ScmVersion Modifier and Type Method Description ChangeLogScmResultAbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Returns the changes that have happened in the source control system between two tags.ChangeLogScmResultAbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, String datePattern)Returns the changes that have happened in the source control system between two tags.ChangeLogScmResultScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Deprecated.ChangeLogScmResultScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)Deprecated.CheckInScmResultAbstractScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String message)Save the changes you have done into the repository.CheckInScmResultScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)Save the changes you have done into the repository.CheckOutScmResultAbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)Create a copy of the repository on your local machine.CheckOutScmResultAbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive)Create a copy of the repository on your local machine.CheckOutScmResultAbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, CommandParameters commandParameters)CheckOutScmResultScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create a copy of the repository on your local machine.CheckOutScmResultScmProvider. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)Create a copy of the repository on your local machine.CheckOutScmResultScmProvider. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, CommandParameters commandParameters)Create a copy of the repository on your local machine.DiffScmResultAbstractScmProvider. diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)Create a diff between two branch/tag/revision.DiffScmResultScmProvider. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)Create a diff between two branch/tag/revision.ExportScmResultAbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)Create an exported copy of the repository on your local machine.ExportScmResultAbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String outputDirectory)Create an exported copy of the repository on your local machine.ExportScmResultScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Create an exported copy of the repository on your local machine.ExportScmResultScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)Create an exported copy of the repository on your local machine.ListScmResultAbstractScmProvider. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion scmVersion)List each element (files and directories) of fileSet as they exist in the repository.ListScmResultScmProvider. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)List each element (files and directories) of fileSet as they exist in the repository.UpdateScmResultAbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean runChangelog)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, Date lastUpdate)Updates the copy on the local machine with the changes in the repository.UpdateScmResultAbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, Date lastUpdate, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)Updates the copy on the local machine with the changes in the repository.UpdateScmResultScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)Updates the copy on the local machine with the changes in the repository.
-