Package org.apache.axis2.maven2.aar
Class FileSet
java.lang.Object
org.apache.axis2.maven2.aar.FileSet
A FileSet defines additional files, which are being added to the Axis application archive. The
objects structure follows the FileSet object from the maven-assembly-plugin, see the plugin
documentation for details.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the file sets base directory.String[]Returns the file sets exclusion list.String[]Returns the file sets inclusion list.Sets a prefix, which the included files should have when being added to the Axis application archive.booleanReturns, whether the default excludes should be used.voidsetDirectory(File directory) Sets the file sets base directory.voidsetExcludes(String[] excludes) Sets the file sets exclusion list.voidsetIncludes(String[] includes) Sets the file sets inclusion list.voidsetOutputDirectory(String outputDirectory) Returns a prefix, which the included files should have when being added to the Axis application archive.voidsetSkipDefaultExcludes(boolean skipDefaultExcludes) Sets, whether the default excludes should be used.
-
Constructor Details
-
FileSet
public FileSet()
-
-
Method Details
-
getDirectory
Returns the file sets base directory. May be omitted, in which case the projects base directory is assumed. -
setDirectory
Sets the file sets base directory. May be omitted, in which case the projects base directory is assumed. -
getExcludes
Returns the file sets exclusion list. -
setExcludes
Sets the file sets exclusion list. -
getIncludes
Returns the file sets inclusion list. -
setIncludes
Sets the file sets inclusion list. -
getOutputDirectory
Sets a prefix, which the included files should have when being added to the Axis application archive. -
setOutputDirectory
Returns a prefix, which the included files should have when being added to the Axis application archive. -
isSkipDefaultExcludes
public boolean isSkipDefaultExcludes()Returns, whether the default excludes should be used. Defaults to true. -
setSkipDefaultExcludes
public void setSkipDefaultExcludes(boolean skipDefaultExcludes) Sets, whether the default excludes should be used. Defaults to true.
-