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
6answers
95 views

Exporting a program in Eclipse that works for people not familiar with Java programming

I made a little minesweeper game and I want to send it to a friend so he can test it out. The problem(probably) is that he isn't able to run it because he doesn't have Java for programmers(JDK) ...
1
vote
1answer
99 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
3answers
461 views

CMS written in Java or PHP that allow export as static HTML pages

I am looking for a CMS that allows me to export the site as static HTML (i.e. the site must be able to work without the CMS itself). I want to be able to create the site on my PC and then upload the ...
1
vote
2answers
368 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 ...
0
votes
0answers
26 views

Eclipse: Export packaged runnable jar while excluding other library jars?

While exporting the project to a single runnable jar with all classpath libraries packaged into it, one jar library in particular which uses depends on native libraries, does not work properly. I ...