Skip to content

Instantly share code, notes, and snippets.

@emartynov
Created April 5, 2013 15:13
Show Gist options
  • Save emartynov/5320079 to your computer and use it in GitHub Desktop.
Save emartynov/5320079 to your computer and use it in GitHub Desktop.
Maven resource configuration
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<overwrite>true</overwrite>
</configuration>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment