Fork me on GitHub
#leiningen
<
2018-09-10
>
Hukka08:09:52

What could be a reason that lein run works fine with org.eclipse.jetty/jetty-alpn-openjdk8-server in my dependencies, but lein uberjar seems to skip it. Running the uberjar fails with jetty not being able to find any alpn processors 😞

Hukka09:09:09

Hm, or maybe the problem is with https://github.com/sunng87/lein-bootclasspath-deps. The jar seems to contain the right packages, but still get errors about them missing from boot classpath

deliciousowl15:09:28

Why is my JVM saying "unrecognized option --add-modules "java.xml.bind"" ? How can I fix this? I'm using Java 10 and Clojure 1.9.0

nickmbailey15:09:57

well i’ve hit that issue when running against java 8

nickmbailey15:09:05

are you sure you are using java 10

mikerod15:09:03

Yeah, looks like you’re using an older version of Java

mikerod15:09:18

If you see this with lein, look at the output of lein -version

zilti21:09:14

Leiningen seems to be unable to handle the dependency [org.openjfx/javafx "11-ea+25"]. I get Could not find artifact org.openjfx:javafx:jar:11-ea+25 in central () despite it being on the repo: https://repo1.maven.org/maven2/org/openjfx/javafx/11-ea+25/

hiredman21:09:06

it is only a pom

hiredman21:09:15

you have to tell lein that it doesn't need to look for the jar

zilti21:09:07

Ah, thanks! 🙂