I am trying to create an automated build solution using maven. My vision is to have a Maven assembly that creates a JAR file from my project, and then simply copy all the dependencies as a JAR into some kind of subdirectory in the target folder.
I don’t want to use Shade or Assembly (so I don’t want to extract the contents of other JARs and include it in one “super-JAR”, because the project is more complex and it breaks when I include all the JARs in one file).
How can I make such a POM assembly?
source share