mirror of
https://github.com/sbt/sbt.git
synced 2026-09-08 03:09:49 +02:00
**Problem** When binary compatibility eviction errors occur, users cannot run `dependencyTree` to debug the dependency conflict because it fails with the same eviction error. **Solution** Set `evictionErrorLevel` and `assumedEvictionErrorLevel` to `Level.Warn` for the `dependencyTreeIgnoreMissingUpdate` task, allowing the dependency tree to be displayed even when eviction errors are present. Fixes #7255