I have scala project from which I make jar using 'assembly' command in sbt. I have two application.conf file in one is in scala/main and one is in scala/test folder.
The build jar contains application.conf file from test folder, which I dont want. I want the jar contains application.conf file from scala/main folder.
How to include that file in generated jar using assemble command. pls suggest.