Systematic approach with Maven to deal with dependency hell

前端 未结 4 1706
孤独总比滥情好
孤独总比滥情好 2020-12-13 19:34

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

4条回答
  •  既然无缘
    2020-12-13 20:00

    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

提交回复
热议问题