I use ant for creating .jar files in Eclipse. Works great.
I have a .jar file I am working on that expects the code to be in a .jar file (it looks for .properties files in the same directory as the .jar file) — the standard Eclipse “Run” and “Debug” menus execute the main() method of a specified Java class… but they do it from the directory containing the compiled class files, not a jar file. Is there a way to change this behavior so Eclipse runs code from the appropriate .jar file instead?
(My workaround right now is to run the .jar file externally, with it suspended waiting for a debugger, per Dave Ray’s answer to one of my other questions.)
Yes, you can create a custom “
Run Configuration“:Ie, a “
Java Application” one, with:Classpathtab emptied from its default content (the.classdirectory) and with the jar addedSourcetab with its default content (should reference thesrcdirectory of the project)One such configuration can be run or debugged.
(Example of a custom configuration with jars as user entries)