Modifying manifest file within JDeveloper
I've got an application that sends an email when it finishes running.
When using the Java Mail API you cannot include mail.jar and activation.jar in your "executable" jar file, your mainifest file must be modified and the following line add: Class-Path: mail.jar activation.jar. Then all three jar files must exist in the same directory.
The problem is, I had to hack the jar file and modify the .mf file via notepad. Is there a way from within JDeveloper to add Class-Path to mainifest.mf.