Check for unresolved properties in Maven Resources

Viewed 276

Given the following property in src/main/resources/hello.xml

<test>${resolved.property}</test>
<test>${unresolved.property}</test>

With properties:

resolved.property=test

How do I validate, after going through mvn:resources filtering, if there are any unresolved properties left?

1 Answers
Related