<configuration>
<!-- ignore conflicts with groovy.lang on the caller side -->
<ignoreSourcePackages>
<ignoreSourcePackages>
<package>com.example</package>
</ignoreSourcePackages>
<ignoreSubpackages>false</ignoreSubpackages>
</ignoreSourcePackages>
<!-- ignore conflicts with com.foo on the callee side -->
<ignoreDestinationPackages>
<ignoreDestinationPackage>
<package>com.google.common</package>
</ignoreDestinationPackage>
</ignoreDestinationPackages>
</configuration>
Also, this PR brings a new setting missinglinkFailOnConflicts:
This PR partially covers https://github.com/scalacenter/sbt-missinglink/issues/12.
Conflicts can be ignored based on the package name of the class that has the conflict. Basically, this is just a backport from the maven plugin.
SBT:
Maven:
Also, this PR brings a new setting
missinglinkFailOnConflicts
:SBT:
Maven: