Tagged Questions

7
votes
6answers
17k views

Eclipse Java; export jar, include referenced libraries, without fatjar

I need to export jar from my Eclipse Java project and I want to include the referenced libraries. I can't use fatjar for this, which is what everyone seems to recommend. There must be another way of ...
1
vote
1answer
98 views

Java: Pathnames not working once I export to JAR

I have exported a project to a runnable JAR in eclipse. There are a few places in my code where I've done the following. String file = "src/Files/..."; loadFile(file); // purely for example Now ...
1
vote
2answers
367 views

Execution fails via java -jar while the same code runs fine through eclipse

I have been working on packing a project lately but it has turned into a nightmare. So here's the problem in a nutshell. I have a project that I'd like to have as a jar file, and eventually use it as ...