diff --git a/examples/http-swagger/project.clj b/examples/http-swagger/project.clj index fb0ab89c..7f359979 100644 --- a/examples/http-swagger/project.clj +++ b/examples/http-swagger/project.clj @@ -1,6 +1,7 @@ (defproject ring-example "0.1.0-SNAPSHOT" :description "Reitit Http App with Swagger" :dependencies [[org.clojure/clojure "1.9.0"] - [ring/ring-jetty-adapter "1.7.0-RC2"] + [ring/ring-jetty-adapter "1.7.0"] + [aleph "0.4.6"] [metosin/reitit "0.2.4"]] :repl-options {:init-ns example.server}) diff --git a/examples/http/project.clj b/examples/http/project.clj index 1922b9f5..286fa523 100644 --- a/examples/http/project.clj +++ b/examples/http/project.clj @@ -4,6 +4,6 @@ [org.clojure/core.async "0.4.474"] [funcool/promesa "1.9.0"] [manifold "0.1.8"] - [ring/ring-jetty-adapter "1.7.0-RC2"] + [ring/ring-jetty-adapter "1.7.0"] [metosin/reitit "0.2.4"]] :repl-options {:init-ns example.server}) diff --git a/examples/just-coercion-with-ring/project.clj b/examples/just-coercion-with-ring/project.clj index 20f27629..f289d992 100644 --- a/examples/just-coercion-with-ring/project.clj +++ b/examples/just-coercion-with-ring/project.clj @@ -1,6 +1,6 @@ (defproject just-coercion-with-ring "0.1.0-SNAPSHOT" :description "Reitit coercion with vanilla ring" :dependencies [[org.clojure/clojure "1.9.0"] - [ring/ring-jetty-adapter "1.7.0-RC2"] + [ring/ring-jetty-adapter "1.7.0"] [metosin/muuntaja "0.4.1"] [metosin/reitit "0.2.4"]]) diff --git a/examples/ring-example/project.clj b/examples/ring-example/project.clj index 3cacaa51..6bf52611 100644 --- a/examples/ring-example/project.clj +++ b/examples/ring-example/project.clj @@ -1,6 +1,6 @@ (defproject ring-example "0.1.0-SNAPSHOT" :description "Reitit Ring App" :dependencies [[org.clojure/clojure "1.9.0"] - [ring/ring-jetty-adapter "1.7.0-RC2"] + [ring/ring-jetty-adapter "1.7.0"] [metosin/reitit "0.2.4"]] :repl-options {:init-ns example.server})