Search code examples
javamavenpluginsjarmaven-assembly-plugin

Maven command/plugin to change package structure of generater jar


Package Structure of my generated jar is com/ipc/session/...

I need the jar to be in car/com/ipc/session/... format.

Is there any maven command or plugin to achieve this?


Solution

  • Using shade plugin it is possible. It worked for us. Thanks all for providing solutions.