Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
In http://maven.apache.org/plugins/maven-enforcer-plugin/rules/versionRanges.html there two typos in table:
(1.0,2.0) 1.0 >= x <= 2.0
should be:
(1.0,2.0) 1.0 > x < 2.0
and:
[1.0,2.0] 1.0 > x < 2.0
should be:
(1.0,2.0) 1.0 >= x <= 2.0