├── .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 ├── deploySite.sh ├── pom.xml └── src ├── it ├── MRESOURCES-104 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── test.properties │ └── verify.groovy ├── MRESOURCES-105 │ ├── my.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── test.properties ├── MRESOURCES-106 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── file.txt │ │ │ └── filter.properties │ └── verify.bsh ├── MRESOURCES-110 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── mresources-110.xml │ └── verify.groovy ├── MRESOURCES-131 │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── maven │ │ │ │ └── plugins │ │ │ │ └── resources │ │ │ │ └── it │ │ │ │ └── App.java │ │ └── test │ │ │ └── resources │ │ │ └── skipped.txt │ └── verify.groovy ├── MRESOURCES-166 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── resource.txt │ └── verify.groovy ├── MRESOURCES-171 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── test.properties │ │ │ └── test.txt │ └── verify.groovy ├── MRESOURCES-18 │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── resources │ │ │ │ └── test.properties │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── maven │ │ │ └── it0105 │ │ │ └── FilterTest.java │ └── test.properties ├── MRESOURCES-20 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── resource.txt │ └── verify.bsh ├── MRESOURCES-231 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── test.txt │ └── verify.groovy ├── MRESOURCES-257 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── test.txt │ └── verify.groovy ├── MRESOURCES-77 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── filters │ │ │ ├── custom-filters.properties │ │ │ ├── filter2.properties │ │ │ ├── filter3.properties │ │ │ └── my.filter │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.bsh ├── MRESOURCES-78 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── filtered │ │ │ └── filtered.properties │ │ │ └── resources │ │ │ └── unfiltered.properties │ └── verify.groovy ├── MRESOURCES-99 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.groovy ├── binaries-filtering │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── duke-beerjpg.img │ │ │ ├── file.txt │ │ │ └── happy_duke.gif │ └── verify.bsh ├── copy-resources-it │ ├── pom.xml │ ├── src │ │ └── non-packaged-resources │ │ │ └── configuration.properties │ └── verify.bsh ├── custom-delimiter │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── filters │ │ │ ├── filter2.properties │ │ │ └── my.filter │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.bsh ├── escapeInterpolation │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── filters │ │ │ │ └── my.filter │ │ │ └── resources │ │ │ │ └── SomeResource.txt │ │ └── test │ │ │ ├── filters │ │ │ └── my.filter │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.bsh ├── filter-filenames │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── ${project.artifactId}.txt │ │ │ └── ${project.version}.txt │ └── verify.groovy ├── filter-test-resources │ ├── pom.xml │ ├── src │ │ └── test │ │ │ ├── filters │ │ │ └── my.filter │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.bsh ├── filter │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── filters │ │ │ ├── filter2.properties │ │ │ ├── filter3.properties │ │ │ └── my.filter │ │ │ └── resources │ │ │ └── SomeResource.txt │ └── verify.bsh ├── gh-312 │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── test.properties │ └── verify.groovy ├── include-git-ignore │ ├── pom.xml │ ├── setup.bsh │ └── verify.bsh ├── includeEmptyDirs │ ├── README.md │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── filters │ │ │ └── my.filter │ │ │ └── resources │ │ │ ├── SomeResource.txt │ │ │ ├── empty-dir-child │ │ │ └── child │ │ │ │ └── ._placeholder │ │ │ └── empty-dir │ │ │ └── ._placeholder │ └── verify.bsh ├── profile-override │ ├── invoker.properties │ ├── pom.xml │ ├── prebuild.bsh │ ├── src │ │ └── main │ │ │ └── resources │ │ │ ├── production │ │ │ └── config.properties │ │ │ └── test │ │ │ └── config.properties │ └── verify.bsh ├── settings.xml ├── skip-yes │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── resources │ │ │ └── test-resource.txt │ └── verify.groovy └── user-filters │ ├── filter │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── maven │ │ │ └── plugins │ │ │ └── resources │ │ │ └── filters │ │ │ └── ItFilter.java │ │ └── resources │ │ └── META-INF │ │ └── maven │ │ └── org.apache.maven.api.di.Inject │ ├── invoker.properties │ ├── module │ ├── pom.xml │ └── src │ │ └── main │ │ ├── filtered │ │ └── filtered.properties │ │ └── resources │ │ └── unfiltered.properties │ ├── pom.xml │ ├── test.properties │ └── verify.groovy ├── main └── java │ └── org │ └── apache │ └── maven │ └── plugins │ └── resources │ ├── CopyResourcesMojo.java │ ├── MavenBuildTimestamp.java │ ├── Providers.java │ ├── ResourcesMojo.java │ └── TestResourcesMojo.java ├── site ├── apt │ ├── examples │ │ ├── binaries-filtering.apt.vm │ │ ├── copy-resources.apt.vm │ │ ├── custom-resource-filters.apt.vm │ │ ├── encoding.apt.vm │ │ ├── escape-filtering.apt.vm │ │ ├── filter.apt │ │ ├── filtering-properties-files.apt.vm │ │ ├── include-exclude.apt │ │ └── resource-directory.apt │ ├── index.apt.vm │ └── usage.apt.vm ├── fml │ └── faq.fml ├── resources │ └── download.cgi ├── site.xml └── xdoc │ └── download.xml.vm └── test ├── java └── org │ └── apache │ └── maven │ └── plugins │ └── resources │ ├── AbstractPropertyUtilsTest.java │ ├── BasicPropertyUtilsTest.java │ ├── CopyResourcesMojoTest.java │ ├── PropertyUtilsExceptionTest.java │ ├── ResourcesMojoTest.java │ ├── TestResourcesTest.java │ └── stub │ ├── MavenProjectBasicStub.java │ ├── MavenProjectBuildStub.java │ └── MavenProjectResourcesStub.java ├── resources └── unit │ ├── propertiesutils-test │ ├── advance.properties │ ├── advance_validation.properties │ ├── basic.properties │ ├── basic_validation.properties │ ├── enhanced.properties │ └── enhanced_validation.properties │ ├── reflectionproperties-test │ ├── plugin-config.xml │ ├── validation.properties │ └── validation_escapebackslashinpath.properties │ └── resources-test │ ├── plugin-config-absolute-path.xml │ ├── plugin-config-relative-path.xml │ ├── plugin-config.xml │ └── validation.properties └── unit-files └── copy-resources-test ├── filter-files └── filter.txt └── no-filter └── config.properties /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/ISSUE_TEMPLATE/FEATURE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter-3.x.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/release-drafter-3.x.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/workflows/maven-verify.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/README.md -------------------------------------------------------------------------------- /deploySite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/deploySite.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-104/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-104/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-104/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-104/src/main/resources/test.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-104/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-104/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-105/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-105/my.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-105/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-105/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-105/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-105/src/main/resources/test.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-106/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-106/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-106/src/main/resources/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-106/src/main/resources/file.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-106/src/main/resources/filter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-106/src/main/resources/filter.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-106/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-106/verify.bsh -------------------------------------------------------------------------------- /src/it/MRESOURCES-110/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-110/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-110/src/main/resources/mresources-110.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-110/src/main/resources/mresources-110.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-110/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-110/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-131/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-131/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-131/src/main/java/org/apache/maven/plugins/resources/it/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-131/src/main/java/org/apache/maven/plugins/resources/it/App.java -------------------------------------------------------------------------------- /src/it/MRESOURCES-131/src/test/resources/skipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-131/src/test/resources/skipped.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-131/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-131/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-166/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-166/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-166/src/main/resources/resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-166/src/main/resources/resource.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-166/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-166/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-171/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-171/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-171/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-171/src/main/resources/test.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-171/src/main/resources/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-171/src/main/resources/test.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-171/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-171/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-18/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-18/invoker.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-18/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-18/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-18/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-18/src/main/resources/test.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-18/src/test/java/org/apache/maven/it0105/FilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-18/src/test/java/org/apache/maven/it0105/FilterTest.java -------------------------------------------------------------------------------- /src/it/MRESOURCES-18/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-18/test.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-20/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-20/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-20/src/main/resources/resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-20/src/main/resources/resource.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-20/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-20/verify.bsh -------------------------------------------------------------------------------- /src/it/MRESOURCES-231/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-231/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-231/src/main/resources/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-231/src/main/resources/test.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-231/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-231/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-257/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-257/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-257/src/main/resources/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-257/src/main/resources/test.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-257/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-257/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/src/main/filters/custom-filters.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/src/main/filters/custom-filters.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/src/main/filters/filter2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/src/main/filters/filter2.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/src/main/filters/filter3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/src/main/filters/filter3.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/src/main/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/src/main/filters/my.filter -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-77/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-77/verify.bsh -------------------------------------------------------------------------------- /src/it/MRESOURCES-78/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-78/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-78/src/main/filtered/filtered.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-78/src/main/filtered/filtered.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-78/src/main/resources/unfiltered.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-78/src/main/resources/unfiltered.properties -------------------------------------------------------------------------------- /src/it/MRESOURCES-78/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-78/verify.groovy -------------------------------------------------------------------------------- /src/it/MRESOURCES-99/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-99/pom.xml -------------------------------------------------------------------------------- /src/it/MRESOURCES-99/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-99/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/MRESOURCES-99/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/MRESOURCES-99/verify.groovy -------------------------------------------------------------------------------- /src/it/binaries-filtering/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/binaries-filtering/pom.xml -------------------------------------------------------------------------------- /src/it/binaries-filtering/src/main/resources/duke-beerjpg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/binaries-filtering/src/main/resources/duke-beerjpg.img -------------------------------------------------------------------------------- /src/it/binaries-filtering/src/main/resources/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/binaries-filtering/src/main/resources/file.txt -------------------------------------------------------------------------------- /src/it/binaries-filtering/src/main/resources/happy_duke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/binaries-filtering/src/main/resources/happy_duke.gif -------------------------------------------------------------------------------- /src/it/binaries-filtering/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/binaries-filtering/verify.bsh -------------------------------------------------------------------------------- /src/it/copy-resources-it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/copy-resources-it/pom.xml -------------------------------------------------------------------------------- /src/it/copy-resources-it/src/non-packaged-resources/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/copy-resources-it/src/non-packaged-resources/configuration.properties -------------------------------------------------------------------------------- /src/it/copy-resources-it/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/copy-resources-it/verify.bsh -------------------------------------------------------------------------------- /src/it/custom-delimiter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/custom-delimiter/pom.xml -------------------------------------------------------------------------------- /src/it/custom-delimiter/src/main/filters/filter2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/custom-delimiter/src/main/filters/filter2.properties -------------------------------------------------------------------------------- /src/it/custom-delimiter/src/main/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/custom-delimiter/src/main/filters/my.filter -------------------------------------------------------------------------------- /src/it/custom-delimiter/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/custom-delimiter/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/custom-delimiter/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/custom-delimiter/verify.bsh -------------------------------------------------------------------------------- /src/it/escapeInterpolation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/pom.xml -------------------------------------------------------------------------------- /src/it/escapeInterpolation/src/main/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/src/main/filters/my.filter -------------------------------------------------------------------------------- /src/it/escapeInterpolation/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/escapeInterpolation/src/test/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/src/test/filters/my.filter -------------------------------------------------------------------------------- /src/it/escapeInterpolation/src/test/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/src/test/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/escapeInterpolation/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/escapeInterpolation/verify.bsh -------------------------------------------------------------------------------- /src/it/filter-filenames/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-filenames/pom.xml -------------------------------------------------------------------------------- /src/it/filter-filenames/src/main/resources/${project.artifactId}.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-filenames/src/main/resources/${project.artifactId}.txt -------------------------------------------------------------------------------- /src/it/filter-filenames/src/main/resources/${project.version}.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-filenames/src/main/resources/${project.version}.txt -------------------------------------------------------------------------------- /src/it/filter-filenames/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-filenames/verify.groovy -------------------------------------------------------------------------------- /src/it/filter-test-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-test-resources/pom.xml -------------------------------------------------------------------------------- /src/it/filter-test-resources/src/test/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-test-resources/src/test/filters/my.filter -------------------------------------------------------------------------------- /src/it/filter-test-resources/src/test/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-test-resources/src/test/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/filter-test-resources/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter-test-resources/verify.bsh -------------------------------------------------------------------------------- /src/it/filter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/pom.xml -------------------------------------------------------------------------------- /src/it/filter/src/main/filters/filter2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/src/main/filters/filter2.properties -------------------------------------------------------------------------------- /src/it/filter/src/main/filters/filter3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/src/main/filters/filter3.properties -------------------------------------------------------------------------------- /src/it/filter/src/main/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/src/main/filters/my.filter -------------------------------------------------------------------------------- /src/it/filter/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/filter/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/filter/verify.bsh -------------------------------------------------------------------------------- /src/it/gh-312/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/gh-312/pom.xml -------------------------------------------------------------------------------- /src/it/gh-312/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/gh-312/src/main/resources/test.properties -------------------------------------------------------------------------------- /src/it/gh-312/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/gh-312/verify.groovy -------------------------------------------------------------------------------- /src/it/include-git-ignore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/include-git-ignore/pom.xml -------------------------------------------------------------------------------- /src/it/include-git-ignore/setup.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/include-git-ignore/setup.bsh -------------------------------------------------------------------------------- /src/it/include-git-ignore/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/include-git-ignore/verify.bsh -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/includeEmptyDirs/README.md -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/includeEmptyDirs/pom.xml -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/src/main/filters/my.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/includeEmptyDirs/src/main/filters/my.filter -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/src/main/resources/SomeResource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/includeEmptyDirs/src/main/resources/SomeResource.txt -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/src/main/resources/empty-dir-child/child/._placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/src/main/resources/empty-dir/._placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/it/includeEmptyDirs/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/includeEmptyDirs/verify.bsh -------------------------------------------------------------------------------- /src/it/profile-override/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/invoker.properties -------------------------------------------------------------------------------- /src/it/profile-override/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/pom.xml -------------------------------------------------------------------------------- /src/it/profile-override/prebuild.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/prebuild.bsh -------------------------------------------------------------------------------- /src/it/profile-override/src/main/resources/production/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/src/main/resources/production/config.properties -------------------------------------------------------------------------------- /src/it/profile-override/src/main/resources/test/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/src/main/resources/test/config.properties -------------------------------------------------------------------------------- /src/it/profile-override/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/profile-override/verify.bsh -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/skip-yes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/skip-yes/pom.xml -------------------------------------------------------------------------------- /src/it/skip-yes/src/main/resources/test-resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/skip-yes/src/main/resources/test-resource.txt -------------------------------------------------------------------------------- /src/it/skip-yes/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/skip-yes/verify.groovy -------------------------------------------------------------------------------- /src/it/user-filters/filter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/filter/pom.xml -------------------------------------------------------------------------------- /src/it/user-filters/filter/src/main/java/org/apache/maven/plugins/resources/filters/ItFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/filter/src/main/java/org/apache/maven/plugins/resources/filters/ItFilter.java -------------------------------------------------------------------------------- /src/it/user-filters/filter/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/filter/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject -------------------------------------------------------------------------------- /src/it/user-filters/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/invoker.properties -------------------------------------------------------------------------------- /src/it/user-filters/module/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/module/pom.xml -------------------------------------------------------------------------------- /src/it/user-filters/module/src/main/filtered/filtered.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/module/src/main/filtered/filtered.properties -------------------------------------------------------------------------------- /src/it/user-filters/module/src/main/resources/unfiltered.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/module/src/main/resources/unfiltered.properties -------------------------------------------------------------------------------- /src/it/user-filters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/pom.xml -------------------------------------------------------------------------------- /src/it/user-filters/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/test.properties -------------------------------------------------------------------------------- /src/it/user-filters/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/it/user-filters/verify.groovy -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/resources/CopyResourcesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/main/java/org/apache/maven/plugins/resources/CopyResourcesMojo.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/resources/MavenBuildTimestamp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/main/java/org/apache/maven/plugins/resources/MavenBuildTimestamp.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/resources/Providers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/main/java/org/apache/maven/plugins/resources/Providers.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/resources/ResourcesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/main/java/org/apache/maven/plugins/resources/ResourcesMojo.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/resources/TestResourcesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/main/java/org/apache/maven/plugins/resources/TestResourcesMojo.java -------------------------------------------------------------------------------- /src/site/apt/examples/binaries-filtering.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/binaries-filtering.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/copy-resources.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/copy-resources.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/custom-resource-filters.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/custom-resource-filters.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/encoding.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/encoding.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/escape-filtering.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/escape-filtering.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/filter.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/filter.apt -------------------------------------------------------------------------------- /src/site/apt/examples/filtering-properties-files.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/filtering-properties-files.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/include-exclude.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/include-exclude.apt -------------------------------------------------------------------------------- /src/site/apt/examples/resource-directory.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/examples/resource-directory.apt -------------------------------------------------------------------------------- /src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/site/apt/usage.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/apt/usage.apt.vm -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/resources/download.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/resources/download.cgi -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/download.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/site/xdoc/download.xml.vm -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/AbstractPropertyUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/AbstractPropertyUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/BasicPropertyUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/BasicPropertyUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/CopyResourcesMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/CopyResourcesMojoTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/PropertyUtilsExceptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/PropertyUtilsExceptionTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/ResourcesMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/ResourcesMojoTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/TestResourcesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/TestResourcesTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectBasicStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectBasicStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectBuildStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectBuildStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectResourcesStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectResourcesStub.java -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/advance.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/advance.properties -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/advance_validation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/advance_validation.properties -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/basic.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/basic.properties -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/basic_validation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/basic_validation.properties -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/enhanced.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/enhanced.properties -------------------------------------------------------------------------------- /src/test/resources/unit/propertiesutils-test/enhanced_validation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/propertiesutils-test/enhanced_validation.properties -------------------------------------------------------------------------------- /src/test/resources/unit/reflectionproperties-test/plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/reflectionproperties-test/plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/unit/reflectionproperties-test/validation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/reflectionproperties-test/validation.properties -------------------------------------------------------------------------------- /src/test/resources/unit/reflectionproperties-test/validation_escapebackslashinpath.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/reflectionproperties-test/validation_escapebackslashinpath.properties -------------------------------------------------------------------------------- /src/test/resources/unit/resources-test/plugin-config-absolute-path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/resources-test/plugin-config-absolute-path.xml -------------------------------------------------------------------------------- /src/test/resources/unit/resources-test/plugin-config-relative-path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/resources-test/plugin-config-relative-path.xml -------------------------------------------------------------------------------- /src/test/resources/unit/resources-test/plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/resources-test/plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/unit/resources-test/validation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/resources/unit/resources-test/validation.properties -------------------------------------------------------------------------------- /src/test/unit-files/copy-resources-test/filter-files/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/unit-files/copy-resources-test/filter-files/filter.txt -------------------------------------------------------------------------------- /src/test/unit-files/copy-resources-test/no-filter/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-resources-plugin/HEAD/src/test/unit-files/copy-resources-test/no-filter/config.properties --------------------------------------------------------------------------------