Well i've made a java project with intelliJ, but I can only run it if intellliJ is started.
Basically I want to make an .exe or something from it.
It doesn't uses a database or something.
I hope this is more clear
I've found somewhere that I need to convert my project to a .JAR file which I then can convert to an .exe.
However when I create my .JAR file using IntelliJ and then try to run it, I get "Could not find main class, program will now exit", but I've selected my main class when creating the .JAR file :s
In this main class I have this: (separate main class with no other functions)
public class Start{
public static void main(String[] args) {
new myapplication();
}
}