JarSplice is a tool which creates a single executable fat jar via an easy to use GUI with options for creating native launchers, and adding and extracting native files.
Questions tagged [jarsplice]
7 questions
1
vote
1 answer
Error while running exported Slick2d project
I followed this: https://www.youtube.com/watch?v=5stQZqOAM70 tutorial online. (exported to runnable jar file, then made jar file with jarsplice). I included all the necessary jars and natives like he explained, but when I try to run the application…

Tholok
- 53
- 7
0
votes
0 answers
'No lwjgl in java.library.path'
I need to export a lwjgl 2 App from eclipse.
I export the jar file (TS.jar), add the jars and natives to it with jarsplice (TS_FULL.jar), run the app from cmd with:
java TS_FULL.jar
and it says it cant find main class, strange given that at export…

StefanoN
- 147
- 1
- 7
0
votes
0 answers
Issues packing LWJGL 3 project into executable .jar file
I'm having issues exporting my java project written with the LWJGL library (version 3.2.1) because of the new bundling of the native ('.dll') files.
I want to run my code outside of eclipse to test the speed it which my game runs, but there seems to…

J. Lengel
- 570
- 3
- 16
0
votes
1 answer
Jarsplice - Combine apache libraries with my jar
I made a program with third party libraries like apache and i'm trying to put them all in a runnable .jar file. I searched a lot, and i found a program named "JarSplice - The Fat Jar Creator" but when i go to create the final jar i'm getting the…

John
- 81
- 2
- 12
0
votes
1 answer
How to set the main class in JarSplice?
I made a project a while ago and compiled to an executable JAR file. Now I'm using JarSplice to wrap it in native executables. How to I specify that the main class is in my JAR? The only instructions are to tell it the package path to the main…

Sam Claus
- 1,807
- 23
- 39
0
votes
0 answers
Not finding files with JarSplice
I created a simple project using the LWJGL libraries in Intellij IDE. The game runs fine inside the IDE, but I've run into problems when trying to create an executable JAR file. After trying to manipulate Intellij to do it for me and failing, I've…

user3709119
- 107
- 11
0
votes
1 answer
NullPointerException on exported Slick2D project
My Slick2D project seems to run okay when executed in the Eclipse IDE, but when I export it through JarSplice, it throws a NullPointerException in the class 'Menu'.
Here is the snippet of code that throws the error:
@Override
public void render(…

mgthomas99
- 5,402
- 3
- 19
- 21