I have \\src\\main\\resources\\logback.xml file. When I run mvn package it is placed into the jar by default. How do I make Maven place it next to jar, not insi
mvn package
Exclude that file: http://maven.apache.org/plugins/maven-resources-plugin/examples/include-exclude.html
And then use the Maven Antrun plugin to copy the file.
However, the latter part does not make much sense. If it is a configuration file to put in a server, simply manually copy it.