For a single module build, requiring management of dependencies and plugins adds some overhead that is not immediately beneficial. So for these projects, the <dependencies> and <plugins> settings should probably be false.
For a multi-module project, both of those settings should probably be true.
It would be nice if it were possible to capture these different default settings in a single base pom, e.g.
<requireManagement>
<single-module>
<dependencies>...</dependencies>
<plugins>...</plugins>
</single-module>
<multi-module>
<dependencies>...</dependencies>
<plugins>...</plugins>
</multi-module>
</requireManagement>
Would a patch for that be accepted?
For a single module build, requiring management of dependencies and plugins adds some overhead that is not immediately beneficial. So for these projects, the
<dependencies>and<plugins>settings should probably befalse.For a multi-module project, both of those settings should probably be
true.It would be nice if it were possible to capture these different default settings in a single base pom, e.g.
Would a patch for that be accepted?