How to stop Maven from overwriting resource files
问题 I have the default maven structure: main --java --resources --webapp I see that every mvn compile copies resources even though they were not changed. What should I do to make build copy only changed files? <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> ... </dependencies> <properties> <maven.resources.overwrite>false</maven