
Hi,
I have placed one jar file in the WEB-INF/lib folder now I wan't to use this jar in the maven build and test phases. How to use this jar file?
Thanks

HI,
You can add following dependency in pom.xml file:
<dependency>
<groupId>mylibrary</groupId>
<artifactId>artifact</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/mylibrary.jar</systemPath>
</dependency>
Thanks