Package jetbrains.buildServer.vcs
Interface BuildPatchByIncludeRule
-
public interface BuildPatchByIncludeRule
Deprecated.- See Also:
BuildPatchByIncludeRules
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
buildPatch(VcsRoot root, String fromVersion, String toVersion, PatchBuilder builder, IncludeRule includeRule)
Deprecated.Builds patch for the specified project subdirectory.
-
-
-
Method Detail
-
buildPatch
void buildPatch(VcsRoot root, String fromVersion, String toVersion, PatchBuilder builder, IncludeRule includeRule) throws IOException, VcsException
Deprecated.Builds patch for the specified project subdirectory.- Parameters:
root
- vcs settings.fromVersion
- version to get sources differences from. If this version isnull
all sources should be taken.toVersion
- version to get sources differences to.builder
- patch builder.includeRule
- include rule specifies VCS relative path to get sources. Implementation have to use onlyFileRule.getFrom()
to get relative VCS path suffix to checkout. All other necessary path mappings are done implicitly byVcsSupportUtil
- Throws:
IOException
- exception occurred while operating with builder.VcsException
- exception occurred while operating with version control.
-
-