I've already learned that Swing forms are compiled into some kind of binary files per default using the IntelliJ IDEA.
In order to get a standalone runnable JAR someone needs to change this mode into "Generate GUI into: Java source code".
To be honest, I like the clean way IntelliJ is managing the code of the form. I know how to program Swing code on my own but
- it doesn't make fun to me
- therefore I like the GUI designer
- I would prefer the code somewhere outside of my focus.
Now I come to my question:
Can I somehow run my app outside of the IDE w/o activate the setting to "Generate GUI into: Java source code"?
I don't need a single packed JAR file. It would be totally fine e.g. to have all necessary files together to achieve this by keeping the benefit (yes for me it is one) of clean code.