My gradle war task seems to generate a META-INF in the root of my war file. Is this a bug in gradle?
AFAIK meta-inf doesnt belong in the root of war files.
Here is my build.gradle:
apply plugin:'war'
sourceCompatibility = 1.7
Here is my project layout:
Here is the contents of the war. Notice the META-INF folder
Am I doing something wrong?