Я создал собственный архетип maven! Добавил зависимости в файл pom.xml и добавил мои каталоги в файл archetype-metadata.xml
Проблема в том, что когда я создаю проект с моим архетипом, он не генерирует файл application.properties.
Вот файл archetype-metadata.xml
<fileSet filtered="true" encoding="UTF-8">
<directory>src/test/resources</directory>
<includes>
<include>**/*.properties</include>
</includes>
</fileSet>
И файл pom.xml
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>application.properties</include>
</includes>
</resource>
</resources>