I have see ranges from [1.1,2.0) or [1.1,) but what does this mean:
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<configuration>
<properties>
<property>
<name>security-api</name>
<version>[1.4,1.4.1-!)</version>
</property>
Is this -!
within [1.4,1.4.1-!)
specific for version-maven-plugin and what is its purpose?