I\'m struggling with how to approach jar dependency hell. I have a Maven-IntelliJ Scala project that uses some aws sdk\'s. Recently adding the kinesis sdk has introduced inc
Even replacing all the jar with same name you can still have some classes with same fully qualified name. I used maven shade plugin in one of my project. It print classes with same qualified name coming from different jar. Maybe that can help you