I've got a typical Maven project structure with the simplelogger.properties file on the classpath:
+MyProject
`-- src
|-- main/java/com.mypackage.MyClass
`-- resources
`-- simplelogger.properties
This works perfectly from the IDE as the correct SimpleLogger configuration is already on the classpath.
I'd like to have another simplelogger.properties file in the packaged finished .jar (output to file instead of to System.out).
Is there a way to replace the simplelogger.properties on the classpath file with another simplelogger.properties file from somewhere else with Maven when packaging a .jar?