There is an archiveClasses option in maven-war-plugin, which packages all the classes in a single .jar, and then creates .war file with that jar in lib/ folder.
I need to do the same, but leave resource files in classes directory, so that they are still accessible from the classpath but easy to modify.
What is the easiest way to do that?