If I can use ${project.build.sourceDirectory} to reference the source directory, what do I use to reference the \"resources\" directory?
${project.build.sourceDirectory}
Looking at the
Extending @chiebaud's answer, using the maven help plugin, I think the correct option today is
${project.resources[0].directory}
(without the ".build" part).
.build