pedestal 2026-01-19

Hello! Using io.pedestal/pedestal.jetty {:mvn/version "0.7.0"}, I upgraded a few other (non-pedestal deps) on an old project of mine and now I get:

Execution error (ClassNotFoundException) at java.net.URLClassLoader/findClass (URLClassLoader.java:377).
org.eclipse.jetty.server.HttpOutput
According to the stacktrace it happens here: https://github.com/pedestal/pedestal/blob/0.7.0/jetty/src/io/pedestal/http/jetty/container.clj#L13 Any idea on how to debug this?

ok found it, its some kind of conflict with the no.cjohansen/dataspex dependency

maybe because dataspex has a dependency on this: ring/ring-jetty-adapter {:mvn/version "1.14.1"}

a simple :override-deps {ring/ring-jetty-adapter {:mvn/version "1.13.1"}} fixed it, sorry for the inconvenience!