public interface RuntimeInformation
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMavenVersion()
Retrieves the current Maven version, for example "3.0.2".
|
boolean |
isMavenVersion(java.lang.String versionRange)
Checks whether the current Maven runtime matches the specified version range.
|
java.lang.String getMavenVersion()
null.boolean isMavenVersion(java.lang.String versionRange)
versionRange - The version range to match the current Maven runtime against, must not be null.true if the current Maven runtime matches the specified version range, false otherwise.java.lang.IllegalArgumentException - If the specified version range is null, empty or otherwise not a valid
version specification.