Maven 3: Overlay is not a dependency of the project
Not sure why, but using id
instead of groupId
and artifactId
in the overlay worked:
<configuration>
<overlays>
<overlay>
<id>my-legacy-war-project</id>
<targetPath>legacy</targetPath>
</overlay>
</overlays>
</configuration>