I'm having trouble adding a directory from my project into the * .jar file.
I've added the following code to my pom.xml :
<resource>
<directory>migration/</directory>
<includes>
<include>**/*.sql</include>
</includes>
</resource>
But this only includes the .sql files and does not add the directory " migration "
Project structure below:
+ meuprojeto
|---src/main/java
|---src/test/java
|---Maven Dependencies
|---migration