cljfx

https://github.com/cljfx/cljfx
jlmr 2020-02-12T15:00:01.047700Z

Back again, I’ve just built my application into a jar. It seems to startup correctly with java -jar .. but it immediately closes again. Probably because the -main function just calls fx/create-app successfully and returns right after that. How can I prevent this?

vlaaad 2020-02-12T15:02:24.047800Z

Hmm, requiring cljfx starts javafx (non-daemon ui thread), it shouldn't immediately close

jlmr 2020-02-12T16:57:41.048500Z

ok, will look at it further