I have a project developed in Maven. I want to add new jar file to classpath. I added new dependency in pom.xml file:
<dependency> <groupId>mzmatch</groupId> <artifactId>mzmatch</artifactId> <version>1.2.13</version> </dependency>
All the jar libraries are in lib directory. The name of all the libraries matches artifactId-version.jar and their locations are (inside lib directory) groupId/artifactId/version. So I did the same for my mzmatch-1.2.13.jar file.
Apart from adding new dependency in pom file, I added my jar to class-path in Manifest.MF file. But the software still doesnt see my jar. What else should I do? Or I didnt add my library correctly?