Package com.polarion.alm.builder.model
Interface IBuildDescriptor.ISimpleBuildDeploymentDefinition
- All Superinterfaces:
IBuildDescriptor.IBuildDeploymentDefinition
- Enclosing interface:
- IBuildDescriptor
public static interface IBuildDescriptor.ISimpleBuildDeploymentDefinition
extends IBuildDescriptor.IBuildDeploymentDefinition
Simple build deployment.
Will group several files as one build deployment artifact.
- Version:
- $Revision$ $Date$
- Author:
- Stepan Roh, Polarion Software
-
Method Summary
Modifier and TypeMethodDescriptionComma or space separated list of file patterns to exclude.Comma or space separated list of file patterns to include.File location inside local deployment space (relative to artifact's base location) which should be grouped as one build deployment artifact.boolean
Whether default exclusion patterns are used.Methods inherited from interface com.polarion.alm.builder.model.IBuildDescriptor.IBuildDeploymentDefinition
getLabel, getTargetFolder, isMove
-
Method Details
-
getLocalDirectory
File getLocalDirectory()File location inside local deployment space (relative to artifact's base location) which should be grouped as one build deployment artifact.- Returns:
- relative file (not
null
)
-
getInclusionPatterns
String getInclusionPatterns()Comma or space separated list of file patterns to include.- Returns:
- pattern or
null
-
getExclusionPatterns
String getExclusionPatterns()Comma or space separated list of file patterns to exclude.- Returns:
- pattern or
null
-
isUsingDefaultExcludes
boolean isUsingDefaultExcludes()Whether default exclusion patterns are used.Default value should be
true
.See http://ant.apache.org/manual/dirtasks.html#defaultexcludes for more information.
- Returns:
true
if default excludes are used
-