I had to restore destinationDir
, because in a multi-module project it complains as:
module-info.java:2: error: package is empty or does not exist
I fixed it by adding:
jar { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
Is this fine or considered a trick?