Last active
April 21, 2020 21:04
-
-
Save piotrpolak/b49478c4686cbf35d70c1da8e729d18f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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