Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
You have to define your own rules with the versions plugin, cause javaassist does not follow the Maven way with the version numbering. – khmarbaise May 17 '11 at 16:34

1 Answer

up vote 2 down vote accepted

The cause is, that Maven treats version numbers, which aren't in the Maven format, as string, and therefore 3.3 is bigger than 3.12.1.GA You can use the versions-maven-plugin and define an exclude for javassist ( -Dexcludes=javassist:javassist). Or you can write your own version comparing and use that as ruleset.

If you are running your own repository manager, then you can of course add the javassist jar manually there with a correct Maven version numbering, so that the versions-maven-plugin would work as intended.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.