There are some third party jars that my RCP needs.
I wanted to use the .exe that the product export wizard creates.
My 3rd party jars location not fixed and also frequently getting updated.So i can not create plug-in for dependent jars since we have to create plug-in for 3rd party jars each time when any jar get updated.
I have added below relative path in MANIFEST.MF
Bundle-ClassPath: .,
deliverables/DependencyJars/xercesImpl.jar,
deliverables/DependencyJars/xml-apis-1.3.03.jar,
deliverables/DependencyJars/XmlSchema-1.3.2.jar,
deliverables/DependencyJars/xmlsec-1.4.0.jar,
Any idea how I can specify the classpath for the exe so that exe could pick up above relative path?
Is there any way so that we can integrate the 3rd party jars from changing location?