I am using IntelliJ, when I make a change in one of my .feature (It is paired with JBehave plugin, so it is recognized) files it does not automatically copy the changes to the target folder, where the same file exists.
It is a problem, because when I run SerenityRunner it gets the data from the story file which is in the target.
I got !?*.feature added as a resource pattern into the compiler as it was described in this question: copy jbehave stories into target directory using IntelliJ Idea
Edit: When I am running mvn clean install (or mvn clean package), then the target folders are created, and it is updated accordingly to my most recent story files. However, if I do (Build -> Rebuild project) then the comp folder disappears from the target and SerenityRunner does not even find the story files anymore
So yes, I can add a maven goal (clean package) to the run configuration, but it is more like a workaround