I am migrating a project from Apache Maven to sbt.
My project has a lot of dependencies (over 200), and sometimes the class can be duplicated, which can lead to strange effects.
In Maven, I used the maven-duplicate-finder-plugin to detect such cases.
The only solution I see is to create a large jar with the sbt-assembly plugin and configure complaints about duplicate classes. I have not tried it yet.
How can I do this using SBT?
Literature:
source share