Maven POM to execute JAR by reading dependency JARs from repo

159 Views Asked by At

I've a 3rd part JAR which I invoke using below command:

java -jar -Dxxx=xxx xyz.jar

Now the above JAR reads conf file located in conf folder & also reads several dependency JARs located in the lib folder. The lib & conf folders are located in the place where this JAR exists.

Due to legacy reasons, I'm not allowed to modify this xyz.jar

How do I write Maven POM so that it'll run the xyz.jar by getting rid of lib folder & it'll read these libraries from repo (without updating xyz.jar)?

0

There are 0 best solutions below