I have a Maven project which depends on Javassist version 3.12.1.GA, and has 2 repositories (in addition to the central one): JBoss (https://repository.jboss.org/nexus/content/groups/public) and Java.net (http://download.java.net/maven/2).
Here are the latest available versions of Javassist per repository:
- Central: 3.12.1.GA
- JBoss: 3.12.1.GA (contains also version 3.3, see below)
- Java.net: 3.3 (the only version available)
When I run mvn versions:display-dependency-updates, it says that I could upgrade the Javassist version:
javassist:javassist ......... 3.12.1.GA -> 3.3
That means 3.3 > 3.12.1.GA, which, in this specific case, isn't true!
How can I tell the versions plugin that it should not touch javassist, or that it should use another order for this specific dependency?