I want to build an Eclipse RCP application in a way so that the the end user can configure log levels. I want to do it by exposing the log4j.properties file.
Currently that file gets bundled into a jar that is placed under MyApplication\plugins\MyApplication.jar. While I want it to be directly under MyApplication folder where MyApplication.exe is.
I saw some threads about the subject like Proper way to include log4j in an Eclipse 4 (RCP/SWT/OSGi) application but I couldn't find a good answer there. If I create a fragment project for loading the properties, they will still be jarred up, won't they?
I want to know what I can change in my manifest file or Maven pom files so that the log4j.properties file will be taken out of the jar.