When importing a pom.xml that defines an overlay via MavenImporter, this configuration is ignored.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<overlays>
<overlay>
<groupId>com.blah</groupId>
<artifactId>common-web-resources</artifactId>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>WEB-INF/lib/**</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
When importing a pom.xml that defines an overlay via MavenImporter, this configuration is ignored.