Can I specify in POM the minimum version of Maven needed to create a project?
We spent a lot of time overcoming problems with people building our project due to bugs in older versions of Maven that cause massive artifacts (> 2 GB) to silently truncate. They tend to cause unsurprising, weird and ruined behavior in the final product.
Yes, we stated that 3.2.5 is the minimum version that we intend to support, but I wonder: is there a way to ask Maven to enlist if the version is less than this? I believe that I can easily write a plugin for this, but that seems redundant. So, I was hoping there was an easier way.
source
share