Range | Meaning |
---|---|
(,1.0] | x <= 1.0 |
1.0 | 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. |
[1.0] | Exactly 1.0 |
[1.2,1.3] | 1.2 <= x <= 1.3 |
[1.0,2.0) | 1.0 <= x < 2.0 |
[1.5,) | x >= 1.5 |
(,1.0],[1.2,) | x <= 1.0 or x >= 1.2. Multiple sets are separated by a comma. |
(,1.1),(1.1,) | This excludes 1.1 if it is known not to work in combination with the library. |
—————— |
Maven 学习笔记 版本范围
最后发布:2020-11-26 00:27:20首次发布:2020-11-26 00:27:20