I am in process of migrating a Maven project to Gradle. I have some empty directories in src/main/resources that I would like to exclude when building a .war file. I thought it would be as simple as:
war {
includeEmptyDirs = false
......... rest of configuration ........
}
However, I still see empty directories included. Any ideas?