maven-archetype
maven-archetype copied to clipboard
[ARCHETYPE-548] Resource files without extension missing in create-from-project
- Fixes resource files without extension not being included in mvn archetype:create-from-project
- Added integration test for resource file without extension
In ARCHETYPE-548 and ARCHETYPE-499 it is described how archetypes generated with mvn archetype:create-from-project do not include resource files without file extensions. We ran into the same issue with Dockerfile, as did others.
This PR generates a <include> (e.g. **/Dockerfile) for files without extension. In addition the <include>**/*.</include>, which was added in case of an empty extension has been removed for this case.
Following this checklist to help us incorporate your contribution quickly and easily:
- [x] Your pull request should address just one issue, without pulling in other changes.
- [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
- [x] Each commit in the pull request should have a meaningful subject line and body. Note that commits might be squashed by a maintainer on merge.
- [~] Write unit tests that match behavioral changes, where the tests fail if the changes to the runtime are not applied. This may not always be possible but is a best-practice.
- [x] Run
mvn verifyto make sure basic checks pass. A more thorough check will be performed on your pull request automatically. - [x] You have run the integration tests successfully (
mvn -Prun-its verify).
If your pull request is about ~20 lines of code you don't need to sign an Individual Contributor License Agreement if you are unsure please ask on the developers list.
To make clear that you license your contribution under the Apache License Version 2.0, January 2004 you have to acknowledge this by using the following check-box.
- [x] I hereby declare this contribution to be licenced under the Apache License Version 2.0, January 2004
- [ ] In any other case, please file an Apache Individual Contributor License Agreement.
Resolve #860
Resolve #860