I have the following situation:
+ DentistApp
L TreatsLibrary
L IceCream 1.0
L CavityCausesLib
L IceCream 2.0
Now I get a VerifyError
because TreatsLibrary
is using IceCream.giveToKidAfterDrill()
which was removed in version 2.0 because of legal reasons.
How do I import both versions and make sure that each uses its own?
sbt-assembly
has the ability to shading the classes. github.com/sbt/sbt-assembly#shading – Sake