Nice! I think you're clear in the docs that if you want swagger-ui v2, then simply include the appropriate dependency. Others may like v3 π
looked into the Jackson issue with 0.5.0-SNAPSHOT - actually there are three different Jackson module versions, originating from Jsonista, Cheshire ja org.webjars/webjars-locator. The latter two are accidentally compatibe, before Cheshire makes a release, after which, all three are uncompatible π₯
Added direct dependecy to jackson-databind
from metosin/reitit
. To solve the JSON issues, you can either:
1. add a direct dependency metosin/jsonista
as a first dependency
2. add metosin/reitit
as first dependency
should work, unless one has direct dependency to older version of Jackson. In case itβs easy to fix. ping @jstuartmilne
when you say added you mean in clojars right. so basically if i put [metosin/reitit "0.5.0-SNAPSHOT"]
as a first dependency it should work?
I believe it should
tested with a sample project and seemed to work.
I based my project from luminus but there is quite a lot of stuff i dont need.
So i did that and removed the webjars
which i was not using
and it worked π
Thank u verry much