I'm a beginner with maven 2 and I have a problem with the version of a jar in my project.
I have the following dependency declared in my pom.xml
:
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
But when I build my war, I get version 1.0.3 of that artifact. How is that possible!? On top of that, version 1.1.1 is available in my repository.
How to see from where it comes from?
I'm the new maintainer of this project. The parent pom declares this version, the war's pom inherits from the parent's pom.