Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:16
Show Gist options
  • Save ezhov-da/fdc24323fbcc67a2ee29034b16979018 to your computer and use it in GitHub Desktop.
Save ezhov-da/fdc24323fbcc67a2ee29034b16979018 to your computer and use it in GitHub Desktop.
по умолчанию maven исключает файлы из source, чтоб их не исключать, необходимо добавить конфигурации в секцию build
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment