Description
When creating a WAR package, exclusion patterns without a wildcard do not work. For example:
package(:war).tap do |war|
war.path("WEB-INF/classes").tap do |path|
- path.exclude("foo.xml") # does not work
path.exclude("*.xml") # works
path.exclude("*.properties")
end
end
attached is a testcase project layout that displays the behaviour.