2
I’m having a hard time adding one directory of my project inside the archive *.jar.
I added the code below in my pom.xml :
<resource>
<directory>migration/</directory>
<includes>
<include>**/*.sql</include>
</includes>
</resource>
Only that includes only the files .sql and does not add the directory "Migration"
Structure of the project below:
+ meuprojeto
|---src/main/java
|---src/test/java
|---Maven Dependencies
|---migration
You wish to do this for the Flyway?
– Jefferson Quesado