Using maven-shade-plugin you can actually merge all dependency jars into single jar file. However I just want to merge several jar files (not all), similary like include-only x, and y, exclude others.
Is there any easiest way to specify only jar file(s) to be included, than to specify all jar files to be excluded?
maven-shade-plugin supports both inclusion and exclusion in its parameter artifactSet – isn’t that working as you require ?