So, is there easy way to copy *.properties file into exact place in *.jar with Maven or what are the best approaches to deal with it?
Remember that JAR files are just ZIP archives with a different extension. You can "unzip" the JAR and add whatever files you want programatically, like a properties file, if you want. You then just need to zip it all back up again and the JAR should work as expected.
The tricky thing about this solution is that you are using Maven for dependency management which will make it tricky or difficult to manipulate the JAR for your project. Ant would have been you friend in this case.
Either way, I don't think that is the best solution anyway. Plus I don't like criticizing Maven. ;)
I think the right thing to do is add your own version of the whatever.properties file in your own project. If you put in in your src/main/resources folder under the exact same package structure as the Jazzy library is expecting, it should find it properly at runtime.
So if Jazzy keeps the properties file in the com.jazzy.props package, place the file in your own project like this...
<project.root>/src/main/resources/com/jazzy/props/whatever.properties
I didn't actually try this but it should work in theory. Good luck!