Packaging maven submodules
My project has different components and everything is tied together with grpc, so everything is inside of one maven project to start with:
My maven submodule structure looks like this:
And I would like my complete application part end up as a fat jar in the target folders of
How would you configure maven to do this?
I tried a lot of configurations of the
My maven submodule structure looks like this:
And I would like my complete application part end up as a fat jar in the target folders of
part _a and part_b respectively.How would you configure maven to do this?
I tried a lot of configurations of the
maven-jar-plugin and maven-shade-plugin .