I am using gradle war plugin, I am trying to exclude some directories inside WEB-INF directory while packing a war, but the excludes don\'t seem to
gradle
WEB-INF
sourceSets { main { src { srcDir 'config' exclude 'metadata/**' } } }