I have the following pom.xml. When I run mvn clean resources:testResources, my test resources aren\'t being filtered (replacing placeholders in res
pom.xml
mvn clean resources:testResources
The resources and resource elements are for the resources:resources goal. resources:testResources uses testResources and testResource elements.
resources
resource
resources:resources
resources:testResources
testResources
testResource
The correct pom.xml is:
4.0.0 com.example foo 0.0.1 jar foo junit junit 4.11 test src/test/resources true