Too aggressive logging of Assuming allowMajorUpdates false because allowMinorUpdates is false
#1131
Closed
Description
opened on Aug 20, 2024
I have a project utilize the goal display-dependency-updates
to check minor and incremental dependency updates. The config has explicitly set allowMajorUpdates
to false, but on running
the goal the plugin still emit lots of Assuming allowMajorUpdates false because allowMinorUpdates is false
.
[INFO] --- versions:2.17.1:display-dependency-updates (default) @ foo ---
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
[INFO] Assuming allowMajorUpdates false because allowMinorUpdates is false.
...
I think those logging can be omitted if user set allowMajorUpdates
to false explicitly.
Activity