I have a Java application that I wrote in eclipse. It works well there.
It works fine from the command line in the directory to which I export it. This directory contains another directory containing the two jar files that I need for the application, and the manifest file has a path class parameter that indicates them.
I want to use eclipse to generate the necessary files to package this application to work on another machine. Is it possible?
If I choose "create jar executable", it creates this huge file; it unpacks and repackages two libraries, which, as I know, are one way to enable their functionality. I would prefer if they stayed like their own banks, but I'm not sure if the eclipse can do this. More annoying is the fact that the jar file executable puts a lot of files from my eclipse project into this jar file. I donβt see the opportunity to choose what is included there, although I see a place to include and exclude "rules" in the project properties. Are they used here? Somewhere else I choose what does and does not get included in the "executable jar"?
If I select "create jar" (ins "create executable jar"), I do not see where it is possible to include these two jar files anywhere. Perhaps there is no place for their inclusion, where they can be used.
If possible, I do not want to use Ant, I do not want to use Maven, I do not want to load another tool. It seems to me that Eclipse already has all this information, and I suspect that it can already do this without having to go and learn another βgreatβ tool.
source share