hello all,
i am new to maven and I am having what i'm sure is a config issue. i have my master pom and a child jar pom. inside the jar pom i declared this dependency:
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
however when i look in my $HOME/.m2/repository dir, only the pom file is there. there is no jar file. most of the other dependencies have jar files, but not this one. without this jar, the compile step is failing.
any ideas about what i am doing wrong?