I have a 3rd party jar file that requires a .dll to run.
Referring to this post, I have successfully placed both my 3rd party jar files and the dll files into my person repo at .m2.
I'm am still getting errors:
java.lang.UnsatisfiedLinkError: Unable to load library 'libtesseract302': The specified module could not be found.
Do i have to specify a build path in maven to ensure that dll files work?
Or is there a way to build the jar file together with the DLL file to prevent this error?