I want to use some plugin executions of my maven project only when a certain file does not exist. The path to this file can change - that's why it must contain a property (and please correct me if that's not the case). A good way would be to use profile activation with the file, but because the path has a property this doesn't work (as stated in the Maven 'Introduction to build profiles').
That said, the question is: Do you know a way to achieve the desired behaviour only with one pom?
Of course the enforcer plugin offers a limited way of reacting on files but I don't want to necessarily fail or interrupt the build.