Skip to content

Instantly share code, notes, and snippets.

@piotrpolak
Last active April 21, 2020 21:04
Show Gist options
  • Save piotrpolak/b49478c4686cbf35d70c1da8e729d18f to your computer and use it in GitHub Desktop.
Save piotrpolak/b49478c4686cbf35d70c1da8e729d18f to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<overwrite>true</overwrite>
<delimiters>
<delimiter>@{*}</delimiter>
</delimiters>
</configuration>
<executions>
<execution>
<goals>
<goal>resources</goal>
</goals>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment