There is a 3rd party jar which is dependent by many programs on the target machine. That jar file is named as abc.jar.
I can add the jar file to the local repository as abc-1.0.jar and package my project. But that means I must manually replace abc-1.0.jar when abc.jar updates. Here are my questions:
1.Is it possible to just use abc.jar when development with Intellij IDEA? I tried add the abc.jar to the External Libraries with dependency adding. But the editor can not recognize classes within abc.jar
2.If the answer is yes, What should I do to let the war file use the system level's abc.jar not the bundled within the ear?
Many thanks