reveal

2021-07-14T02:07:06.019500Z

Trying to use reveal with openjdk 8. Getting

Starting Reveal as the REPL...
Syntax error (ClassNotFoundException) compiling at (cljfx/coerce.clj:1:1).
javafx.event.EventHandler
Seems like javafx is needed?

seancorfield 2021-07-14T02:40:10.020500Z

@michieljoris You will either need to use the Oracle JDK, which includes Java FX (but, caveat, licensing issues), or the Azul JDK that bundles Java FX.

seancorfield 2021-07-14T02:42:22.022Z

(I used Zulu JDK 8 + jfx for quite a while with Reveal, but it was some time ago -- we're on JDK 11 in production and we've been testing all the way up to JDK 16 in development these days)

2021-07-14T03:17:16.024700Z

We're on 8, with no immediate upgrade plans. Both Oracle and Zulu work. Thanks!