问题
In a gradle build I would like to exclude all files except one. I tried to do it like this:
processResources {
// exclude everything
exclude '*.*'
// except this file
include 'fileA.xml'
}
..but it does not seem to work - all files are excluded. Is this possible in some way?
Thanks for your help and input.
回答1:
Remove the 'exclude' part, because when you use 'include', you don't have to use 'exclude' patterns - gradle automatically excludes all others.
来源:https://stackoverflow.com/questions/39916840/gradle-exclude-all-except-one-file