my question has 3 parts, short, long and additional. I will start with the short one:
Are there any good tutorial/example how to assemble some sort of typical (for example apache like assembly?) I mean tutorial that would address how to develop application using eclipse and finally get it into nice directory structure like:
bin
conf
lib
LICENSE.txt
And the long part of the question is: How to appropriately place my log4j.properties without messing up my final assembly? I know there are many answers like "put it into src/main/resources" and I did and it works now in development. I put all my config files into src/main/resources because I just load the configuration files via classpath (.getClassLoader().getResourceAsStream(name);) and I assume this is the best practice. But when I put it into src/main/resources folder then when I run mvn package the log4j.properties gets put into jar. But that's exactly not what I want. I want to have nice clean jars and in the end when the software is packaged log4j.properties will sit in conf directory and the conf, directory will be on classpath somehow.
Additional question is: Is my approach of solving config loading via classpath good? My thinking is that I want to avoid getting into trouble with development/production path differencies. When I just assume the config will be on CP then everything get's much easier.