I am having issues runtime-resolving a jar file.
I used maven install:install and imported the jar file into my local maven repository.
Then included this jar file in my pom.xml.
<dependency>
<groupId>com.adsafe</groupId>
<artifactId>common-lib</artifactId>
<version>1.0</version>
</dependency>
So, the project compiles fine. (FYI..its a maven enabled eclipse project). but when i run the project i get a NoClassDefFound error for one of the classes inside this jar.
My packaging is 'war', so i assume this jar has to be put into the WEB-INF/lib folder along with the other jars, so it has to be there in the class path.
<packaging>war</packaging>
Where am i going wrong?
Thanks for any help!
FYI... I am using eclipse, m2eclipse (maven plugin), and running this from within eclipse.