Le 29/12/2016 à 02:29, Wookey a écrit : > I also got the complaint that it can't find: > backport-util-concurrent > > Do I care about that? Do I need to package that too? <sinking feeling emoji>
You don't need that one, it's an obsolete library that backported the new java.util classes introduced in Java 5 to older JREs. Just ignore this dependency and patch the code to replace: import edu.emory.mathcs.backport.java.util.Foo; with: import java.util.Foo; Emmanuel Bourg