public abstract String id
Plugin.id()
public abstract String version
The version range will be specified in Maven version range syntax:
Range | Meaning |
---|---|
1.0 | Any dependency version, 1.0 is recommended |
[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 |