I have jar file in my project home folder and I try to provide those jar details in pom.xml , but looks like its not referring
jar location - src/main/resources/lib/apache-commons-lang.jar
Here is my maven code :
<dependency>
<groupId>apache-commons-lang</groupId>
<artifactId>apache-commons-lang</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/apache-
commons-lang.jar</systemPath>
</dependency>
I cant see that mapped in my project properties M2_REPO can anyone help ?