I want to create jar file from below project structure
and I need config.xml file be in the same location with Config class in the created jar file. However my config.xml file is missing after building jar file. I've done some workaround and put config.xml file into resources folder and my jar structure became like this:
|-console.jar
|-com
|-META-INF
|-config.xml
and I manually moved config.xml file to com/test/ folder. I believe there is some way to do it with maven. Any ideas are welcome.