project_key: JBPAPP6 The ranges described in the pom contain ranges like: {code} <version.xyz>[xyz,xyz-redhat-1]</version.xyz> {code} This scheme isn't actually correct, as 'redhat-1' is not a known qualifier (like 'ga', 'final', etc for which maven 3 actually supports xyz < xyz-ga). While this eventually works in Maven and Eclipse, may have side effects. and it definitely throws stricter tools like IntelliJ off (prevents importing Maven projects).
The version comparison changed in Maven 3 so that unknown qualifiers are assumed to be later than GA. So for Maven 3: x.y.z < x.y.z-redhat-1 Compared to Maven 2.x: x.y.z > x.y.z-redhat-1 Before the GA release we plan to remove all the ranges from the BOM and only use specific versions, so issues like what you are facing will go away.
Link: Added: This issue relates to JBPAPP-8805
Will be fixed in JBPAPP-8805
Docs QE Status: Removed: NEW