You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x >= 1.0 * The default Maven meaning for 1.0 is everything (,) but with 1.0 recommended. Obviously this doesn't work for enforcing versions here, so it has been redefined as a minimum version.
(,1.0]
x <= 1.0
(,1.0)
x < 1.0
[1.0]
x == 1.0
[1.0,)
x >= 1.0
(1.0,)
x > 1.0
(1.0,2.0)
1.0 < x < 2.0
[1.0,2.0]
1.0 <= x <= 2.0
(,1.0],[1.2,)
x <= 1.0 or x >= 1.2. Multiple sets are comma-separated
It generally means 1.0 or a later version, if 1.0 is not available. Various Maven plug-ins may interpret this differently, so it is safer to use one of the other, more specific options.
Exactly 1.0
1.2 <= x <= 1.3
1.0 <= x < 2.0
x >= 1.5
x <= 1.0 or x >= 1.2. Multiple sets are separated by a comma.
This excludes 1.1 if it is known not to work in combination with the library.
The text was updated successfully, but these errors were encountered: