views:

208

answers:

0

I am working on a Java Installer project that user InstallShield. (Java panels) The installer package is created automatically while building the installer.

The final installer contains of a setup.exe file and a setup.jar. All my 3rd party jar files are packaged within the setup.jar (It is the general way the installshield follows)

But I noticed that the External files (My Jar libraries) are converted into some other format (Something based on MD5) while putting them in to setup.jar

My requirement is; I need to keep the library jar files within the setup.jar without converting them to Installshield's "unknown" format. We can change the "Stored as" property from "Archive Resources" to "External Resources" but it copies the resources to an external folder (outside setup.jar) Any idea to Disable MD5 thing and just put the originals into setup.jar? Setting a separate zip file with setup.jar is also acceptable in my case.