mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
As of 497da675b9 (committed 1st Sept
2023), `swagger.cljc` uses the `update-vals` function, introduced in
Clojure 1.11.
Due to this, all the example projects fail to run since the
`project.clj` specifies Clojure version 1.10.
This commit updates the Clojure version for such examples, fixing the
problem.
Fixes: #651
8 lines
382 B
Clojure
8 lines
382 B
Clojure
(defproject ring-example "0.1.0-SNAPSHOT"
|
|
:description "Reitit Http App with Swagger"
|
|
:dependencies [[org.clojure/clojure "1.11.1"]
|
|
[ring/ring-jetty-adapter "1.7.1"]
|
|
[aleph "0.4.7-alpha5"]
|
|
[fi.metosin/reitit "0.7.0-alpha6"]
|
|
[metosin/ring-swagger-ui "5.0.0-alpha.0"]]
|
|
:repl-options {:init-ns example.server})
|