I am trying to get a third party library to work in my application. It has one main jar file, core.jar. It is not available through Maven's online repository which is how we normally include third party libraries. We already have a local repository set up for maven:
<repository>
<id>project.local</id>
<name>Local Project Repo</name>
<url>file:${project.basedir}/local-repo</url>
</repository>
And the project is recognizing core.jar that I have put in the local-repo folder (along with a pom file). I can call methods from it, etc. My issue is that I was provided the core.jar file along with many other jars that are apparently dependencies of core.jar. I cannot figure out how, if it is even possible, to get core.jar that I imported through the local-repo to recognize it's dependencies. Right now they are all sitting in the same folder as core.jar, but it is throwing errors saying that classes do not exist. I tried to edit the pom.xml file for core.jar and add some dependencies there, but it does not seem to be working.
I have done a lot of googling around in the last few days but I have not been able to find any answers for how to do this. Maybe I am blind. Is it even possible to make this work in this way?