[akka-user] Overriding default configuration

2015-04-14 Thread Tal Pressman
Hi, I am working on an application that has an application.conf file (under src/main/resources) with some application-specific configuration. When I build (package) the application, the application.conf gets copied into the JAR file and Akka loads it as expected (using ConfigFactory.load()).

[akka-user] Overriding default configuration

2015-04-14 Thread Adam
First of all, regardless of inclusion, you need your build to exclude this application.conf file from jars. There's not much point for a configuration file that can't be easily modified. It should instead be in a folder (e.g. ./conf) that is added to your classpath. Then, you can either add