├── .asf.yaml ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ ├── FEATURE.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md ├── release-drafter-3.x.yml ├── release-drafter.yml └── workflows │ ├── maven-verify.yml │ ├── pr-automation.yml │ ├── release-drafter.yml │ └── stale.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── NOTICE ├── README.md ├── pom.xml └── src ├── it ├── dangling-symlinks │ ├── pom.xml │ ├── setup.groovy │ ├── target │ │ └── link-target.txt │ └── verify.groovy ├── default │ ├── pom.xml │ ├── setup.bsh │ ├── target │ │ ├── classes │ │ │ └── main.properties │ │ ├── site │ │ │ └── index.html │ │ ├── test-1.0-SNAPSHOT.jar │ │ └── test-classes │ │ │ └── test.properties │ └── verify.bsh ├── exclude-default-dirs │ ├── pom.xml │ ├── target │ │ ├── classes │ │ │ └── main.properties │ │ ├── site │ │ │ └── index.html │ │ ├── test-1.0-SNAPSHOT.jar │ │ └── test-classes │ │ │ └── test.properties │ └── verify.bsh ├── fast-delete-default │ ├── invoker.properties │ ├── pom.xml │ ├── target │ │ └── dummy.txt │ └── verify.groovy ├── fast-delete │ ├── invoker.properties │ ├── pom.xml │ ├── target │ │ └── dummy.txt │ └── verify.groovy ├── file-sets-absolute-paths │ ├── child-a │ │ └── pom.xml │ ├── delete-me │ │ └── test.txt │ ├── pom.xml │ └── verify.bsh ├── file-sets-includes-excludes │ ├── dirs │ │ ├── dir0 │ │ │ ├── excluded.txt │ │ │ ├── included.txt │ │ │ ├── sub0 │ │ │ │ ├── excluded.txt │ │ │ │ └── included.txt │ │ │ ├── sub1 │ │ │ │ └── included.txt │ │ │ └── sub2 │ │ │ │ └── excluded.txt │ │ ├── dir1 │ │ │ ├── excluded.txt │ │ │ ├── included.txt │ │ │ ├── sub0 │ │ │ │ ├── excluded.txt │ │ │ │ └── included.txt │ │ │ ├── sub1 │ │ │ │ └── included.txt │ │ │ └── sub2 │ │ │ │ └── excluded.txt │ │ ├── dir2 │ │ │ ├── excluded.txt │ │ │ ├── included.txt │ │ │ ├── sub0 │ │ │ │ ├── excluded.txt │ │ │ │ └── included.txt │ │ │ ├── sub1 │ │ │ │ └── included.txt │ │ │ └── sub2 │ │ │ │ └── excluded.txt │ │ ├── dir3 │ │ │ ├── excluded.txt │ │ │ ├── included.txt │ │ │ ├── sub0 │ │ │ │ ├── excluded.txt │ │ │ │ └── included.txt │ │ │ ├── sub1 │ │ │ │ └── included.txt │ │ │ └── sub2 │ │ │ │ └── excluded.txt │ │ └── dir4 │ │ │ ├── excluded │ │ │ └── file.txt │ │ │ ├── file.txt │ │ │ └── included │ │ │ └── file.txt │ ├── pom.xml │ └── verify.bsh ├── file-sets-relative-paths │ ├── child-a │ │ ├── pom.xml │ │ ├── target │ │ │ └── test.txt │ │ └── temp-stuff │ │ │ └── test.txt │ ├── child-b │ │ ├── deploy │ │ │ └── test.txt │ │ ├── pom.xml │ │ └── target │ │ │ └── test.txt │ ├── deploy │ │ └── test.txt │ ├── pom.xml │ ├── target │ │ └── test.txt │ ├── temp-stuff │ │ └── test.txt │ └── verify.bsh ├── non-existent-base-dirs │ └── pom.xml ├── only-test-clean │ ├── invoker.properties │ ├── pom.xml │ ├── setup.bsh │ ├── target │ │ ├── classes │ │ │ └── main.properties │ │ ├── site │ │ │ └── index.html │ │ ├── test-1.0-SNAPSHOT.jar │ │ └── test-classes │ │ │ └── test.properties │ └── verify.bsh ├── read-only │ ├── pom.xml │ ├── setup.bsh │ ├── target │ │ ├── read-only-dir │ │ │ └── read-only.properties │ │ └── writable-dir │ │ │ └── writable.properties │ └── verify.bsh ├── settings.xml ├── sources-targetPath │ ├── outside-target │ │ └── README.md │ ├── pom.xml │ ├── setup.bsh │ ├── target │ │ └── test-classes │ │ │ └── README.md │ └── verify.bsh ├── special-characters │ ├── pom.xml │ ├── setup.bsh │ └── verify.bsh └── symlink-dont-follow │ ├── ext │ ├── dir │ │ └── file.txt │ └── file.txt │ ├── pom.xml │ ├── setup.groovy │ ├── target │ └── dummy.txt │ ├── target2 │ └── dummy.txt │ └── verify.groovy ├── main └── java │ └── org │ └── apache │ └── maven │ └── plugins │ └── clean │ ├── BackgroundCleaner.java │ ├── CleanMojo.java │ ├── Cleaner.java │ ├── FastMode.java │ └── Fileset.java ├── site ├── apt │ ├── examples │ │ ├── delete_additional_files.apt.vm │ │ ├── ignoring-errors.apt.vm │ │ └── skipping-clean.apt.vm │ ├── index.apt.vm │ └── usage.apt.vm ├── fml │ └── faq.fml ├── resources │ └── download.cgi ├── site.xml └── xdoc │ └── download.xml.vm └── test ├── java └── org │ └── apache │ └── maven │ └── plugins │ └── clean │ ├── CleanMojoTest.java │ └── CleanerTest.java └── resources └── unit ├── basic-clean-test ├── buildDirectory │ └── file.txt ├── buildOutputDirectory │ └── file.txt ├── buildTestDirectory │ └── file.txt └── pom.xml ├── empty-clean-test ├── pom.xml └── testDirectoryStructure │ ├── file.txt │ └── outputDirectory │ └── file.txt ├── fileset-clean-test ├── buildOutputDirectory │ └── file.txt ├── pom.xml └── target │ ├── classes │ └── file.txt │ ├── file.txt │ ├── subdir │ └── file.txt │ └── test-classes │ └── file.txt ├── invalid-directory-test ├── pom.xml └── this-is-a-file ├── locked-file-test ├── buildDirectory │ └── file.txt └── pom.xml ├── missing-directory-test └── pom.xml └── nested-clean-test ├── pom.xml └── target ├── classes └── file.txt ├── file.txt ├── subdir └── file.txt └── test-classes └── file.txt /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/ISSUE_TEMPLATE/FEATURE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter-3.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/release-drafter-3.x.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/workflows/maven-verify.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/it/dangling-symlinks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/dangling-symlinks/pom.xml -------------------------------------------------------------------------------- /src/it/dangling-symlinks/setup.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/dangling-symlinks/setup.groovy -------------------------------------------------------------------------------- /src/it/dangling-symlinks/target/link-target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/dangling-symlinks/target/link-target.txt -------------------------------------------------------------------------------- /src/it/dangling-symlinks/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/dangling-symlinks/verify.groovy -------------------------------------------------------------------------------- /src/it/default/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/pom.xml -------------------------------------------------------------------------------- /src/it/default/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/setup.bsh -------------------------------------------------------------------------------- /src/it/default/target/classes/main.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/target/classes/main.properties -------------------------------------------------------------------------------- /src/it/default/target/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/target/site/index.html -------------------------------------------------------------------------------- /src/it/default/target/test-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/target/test-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /src/it/default/target/test-classes/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/target/test-classes/test.properties -------------------------------------------------------------------------------- /src/it/default/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/default/verify.bsh -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/pom.xml -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/target/classes/main.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/target/classes/main.properties -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/target/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/target/site/index.html -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/target/test-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/target/test-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/target/test-classes/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/target/test-classes/test.properties -------------------------------------------------------------------------------- /src/it/exclude-default-dirs/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/exclude-default-dirs/verify.bsh -------------------------------------------------------------------------------- /src/it/fast-delete-default/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete-default/invoker.properties -------------------------------------------------------------------------------- /src/it/fast-delete-default/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete-default/pom.xml -------------------------------------------------------------------------------- /src/it/fast-delete-default/target/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete-default/target/dummy.txt -------------------------------------------------------------------------------- /src/it/fast-delete-default/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete-default/verify.groovy -------------------------------------------------------------------------------- /src/it/fast-delete/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete/invoker.properties -------------------------------------------------------------------------------- /src/it/fast-delete/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete/pom.xml -------------------------------------------------------------------------------- /src/it/fast-delete/target/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete/target/dummy.txt -------------------------------------------------------------------------------- /src/it/fast-delete/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/fast-delete/verify.groovy -------------------------------------------------------------------------------- /src/it/file-sets-absolute-paths/child-a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-absolute-paths/child-a/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-absolute-paths/delete-me/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-absolute-paths/delete-me/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-absolute-paths/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-absolute-paths/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-absolute-paths/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-absolute-paths/verify.bsh -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/sub0/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/sub0/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/sub0/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/sub0/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/sub1/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/sub1/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir0/sub2/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir0/sub2/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/sub0/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/sub0/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/sub0/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/sub0/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/sub1/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/sub1/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir1/sub2/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir1/sub2/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/sub0/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/sub0/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/sub0/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/sub0/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/sub1/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/sub1/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir2/sub2/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir2/sub2/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/sub0/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/sub0/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/sub0/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/sub0/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/sub1/included.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/sub1/included.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir3/sub2/excluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir3/sub2/excluded.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir4/excluded/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir4/excluded/file.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir4/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir4/file.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/dirs/dir4/included/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/dirs/dir4/included/file.txt -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-includes-excludes/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-includes-excludes/verify.bsh -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-a/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-a/target/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-a/target/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-a/temp-stuff/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-a/temp-stuff/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-b/deploy/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-b/deploy/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-b/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/child-b/target/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/child-b/target/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/deploy/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/deploy/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/pom.xml -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/target/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/target/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/temp-stuff/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/temp-stuff/test.txt -------------------------------------------------------------------------------- /src/it/file-sets-relative-paths/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/file-sets-relative-paths/verify.bsh -------------------------------------------------------------------------------- /src/it/non-existent-base-dirs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/non-existent-base-dirs/pom.xml -------------------------------------------------------------------------------- /src/it/only-test-clean/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/invoker.properties -------------------------------------------------------------------------------- /src/it/only-test-clean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/pom.xml -------------------------------------------------------------------------------- /src/it/only-test-clean/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/setup.bsh -------------------------------------------------------------------------------- /src/it/only-test-clean/target/classes/main.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/target/classes/main.properties -------------------------------------------------------------------------------- /src/it/only-test-clean/target/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/target/site/index.html -------------------------------------------------------------------------------- /src/it/only-test-clean/target/test-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/target/test-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /src/it/only-test-clean/target/test-classes/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/target/test-classes/test.properties -------------------------------------------------------------------------------- /src/it/only-test-clean/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/only-test-clean/verify.bsh -------------------------------------------------------------------------------- /src/it/read-only/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/read-only/pom.xml -------------------------------------------------------------------------------- /src/it/read-only/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/read-only/setup.bsh -------------------------------------------------------------------------------- /src/it/read-only/target/read-only-dir/read-only.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/read-only/target/read-only-dir/read-only.properties -------------------------------------------------------------------------------- /src/it/read-only/target/writable-dir/writable.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/read-only/target/writable-dir/writable.properties -------------------------------------------------------------------------------- /src/it/read-only/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/read-only/verify.bsh -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/sources-targetPath/outside-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/sources-targetPath/outside-target/README.md -------------------------------------------------------------------------------- /src/it/sources-targetPath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/sources-targetPath/pom.xml -------------------------------------------------------------------------------- /src/it/sources-targetPath/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/sources-targetPath/setup.bsh -------------------------------------------------------------------------------- /src/it/sources-targetPath/target/test-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/sources-targetPath/target/test-classes/README.md -------------------------------------------------------------------------------- /src/it/sources-targetPath/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/sources-targetPath/verify.bsh -------------------------------------------------------------------------------- /src/it/special-characters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/special-characters/pom.xml -------------------------------------------------------------------------------- /src/it/special-characters/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/special-characters/setup.bsh -------------------------------------------------------------------------------- /src/it/special-characters/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/special-characters/verify.bsh -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/ext/dir/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/ext/dir/file.txt -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/ext/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/ext/file.txt -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/pom.xml -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/setup.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/setup.groovy -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/target/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/target/dummy.txt -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/target2/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/target2/dummy.txt -------------------------------------------------------------------------------- /src/it/symlink-dont-follow/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/it/symlink-dont-follow/verify.groovy -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/clean/BackgroundCleaner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/main/java/org/apache/maven/plugins/clean/BackgroundCleaner.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/clean/CleanMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/main/java/org/apache/maven/plugins/clean/CleanMojo.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/clean/Cleaner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/main/java/org/apache/maven/plugins/clean/Cleaner.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/clean/FastMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/main/java/org/apache/maven/plugins/clean/FastMode.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/clean/Fileset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/main/java/org/apache/maven/plugins/clean/Fileset.java -------------------------------------------------------------------------------- /src/site/apt/examples/delete_additional_files.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/apt/examples/delete_additional_files.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/ignoring-errors.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/apt/examples/ignoring-errors.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/skipping-clean.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/apt/examples/skipping-clean.apt.vm -------------------------------------------------------------------------------- /src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/site/apt/usage.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/apt/usage.apt.vm -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/resources/download.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/resources/download.cgi -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/download.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/site/xdoc/download.xml.vm -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/java/org/apache/maven/plugins/clean/CleanMojoTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/clean/CleanerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/java/org/apache/maven/plugins/clean/CleanerTest.java -------------------------------------------------------------------------------- /src/test/resources/unit/basic-clean-test/buildDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/basic-clean-test/buildDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/basic-clean-test/buildOutputDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/basic-clean-test/buildOutputDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/basic-clean-test/buildTestDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/basic-clean-test/buildTestDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/basic-clean-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/basic-clean-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/empty-clean-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/empty-clean-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/empty-clean-test/testDirectoryStructure/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/empty-clean-test/testDirectoryStructure/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/empty-clean-test/testDirectoryStructure/outputDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/empty-clean-test/testDirectoryStructure/outputDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/buildOutputDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/buildOutputDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/target/classes/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/target/classes/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/target/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/target/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/target/subdir/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/target/subdir/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/fileset-clean-test/target/test-classes/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/fileset-clean-test/target/test-classes/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/invalid-directory-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/invalid-directory-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/invalid-directory-test/this-is-a-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/invalid-directory-test/this-is-a-file -------------------------------------------------------------------------------- /src/test/resources/unit/locked-file-test/buildDirectory/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/locked-file-test/buildDirectory/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/locked-file-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/locked-file-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/missing-directory-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/missing-directory-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/nested-clean-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/nested-clean-test/pom.xml -------------------------------------------------------------------------------- /src/test/resources/unit/nested-clean-test/target/classes/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/nested-clean-test/target/classes/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/nested-clean-test/target/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/nested-clean-test/target/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/nested-clean-test/target/subdir/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/nested-clean-test/target/subdir/file.txt -------------------------------------------------------------------------------- /src/test/resources/unit/nested-clean-test/target/test-classes/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-clean-plugin/HEAD/src/test/resources/unit/nested-clean-test/target/test-classes/file.txt --------------------------------------------------------------------------------