I have no idea, can you try it? 🙂
Sorry, I should have phrased that differently. I tried it and it doesn't work.
Oh, that's sad. What's the error?
should it work tho? I'm using OpenJFX 11 and cljfx uses OpenJFX12. I posted about it here https://www.reddit.com/r/NixOS/comments/cey72u/openjfx_support_for_clojure/
I don't think cljfx relies on any differences between 11 and 12, try excluding JavaFX dependencies in your build tool
how would you do that in leiningen?
:exclusions
it will probably look like that: [cljfx "1.3.5" :exclusions [org.openjfx/javafx-controls org.openjfx/javafx-base org.openjfx/javafx-graphics org.openjfx/javafx-media org.openjfx/javafx-web]]
you can then verify if deps are truly excluded by doing lein deps :tree
— it'll show your dependency tree