Using gradle 3.4 but fairly new to it.
If I run gradlew installDist the files in src/main/java get copied to the build folder all that works fine.
But I also have an extra folder in src/main/conf I would like to copy over to build/install/my-artifact/conf
I don't want to put it in src/main/resources because that will get included inside the jar. I would like to keep it external.
My gradle file doesn't have anything special except the dependencies.
So how would I go about copying the folders/files when installDist runs?
EDIT:
Has to work with shadow plugin as well.