I am working on a Java project that contains many properties files and the structure looks like this:
src
|
-main
|
-java
|
-ui
|
-many directories with property file in each directory.
I want to build fat jar using Gradle build that will contain those files in the same directories.
Something like:
build
|
-classes
|
-java
|
-main
|
-ui.... and all the files like above.
How can I to do it?