Full name:
org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean
Description:
This attempts to clean a project's working directory of the files that were generated at build-time. By default, it discovers and deletes the directories configured in project.build.directory, project.build.outputDirectory, project.build.testOutputDirectory, and project.reporting.outputDirectory.
Files outside the default may also be included in the deletion by configuring the filesets tag.
Attributes:
Name | Type | Since | Description |
---|---|---|---|
excludeDefaultDirectories | boolean | 2.3 | Disables the deletion of the default output directories configured
for a project. If set to true, only the
files/directories selected via the parameter filesets
will be deleted. Default value is: false. User property is: clean.excludeDefaultDirectories. |
failOnError | boolean | 2.2 | Indicates whether the build will continue even if there are clean
errors. Default value is: true. User property is: maven.clean.failOnError. |
filesets | Fileset[] | 2.1 | The list of file sets to delete, in addition to the default
directories. For example:
<filesets> <fileset> <directory>src/main/generated</directory> <followSymlinks>false</followSymlinks> <useDefaultExcludes>true</useDefaultExcludes> <includes> <include>*.java</include> </includes> <excludes> <exclude>Template*</exclude> </excludes> </fileset> </filesets> |
followSymLinks | boolean | 2.1 | Sets whether the plugin should follow symbolic links while deleting
files from the default output directories of the project. Not
following symlinks requires more IO operations and heap memory,
regardless whether symlinks are actually present. So projects with
a huge output directory that knowingly does not contain symlinks
can improve performance by setting this parameter to
true. Default value is: false. User property is: clean.followSymLinks. |
retryOnError | boolean | 2.4.2 | Indicates whether the plugin should undertake additional attempts
(after a short delay) to delete a file if the first attempt failed.
This is meant to help deleting files that are temporarily locked by
third-party tools like virus scanners or search indexing. Default value is: true. User property is: maven.clean.retryOnError. |
skip | boolean | 2.2 | Disables the plugin execution. Default value is: false. User property is: clean.skip. |
verbose | Boolean | 2.1 | Sets whether the plugin runs in verbose mode. As of plugin version
2.3, the default value is derived from Maven's global debug flag
(compare command line switch -X). User property is: clean.verbose. |
<filesets> <fileset> <directory>src/main/generated</directory> <followSymlinks>false</followSymlinks> <useDefaultExcludes>true</useDefaultExcludes> <includes> <include>*.java</include> </includes> <excludes> <exclude>Template*</exclude> </excludes> </fileset> </filesets>
skip: