I have maven multimodule project with the structure:
db
---> src
------> main
---------> resources
web
---> src
------> main
--------> resources
------------> dbs
----------------> lots of xml and csv files
I'd like to create fatjar which would contain all resources from web's module dbs folder and the process is executed from db module
How can I achieve it?
What plugins to use?