reitit/examples/http/project.clj

10 lines
407 B
Clojure
Raw Normal View History

2018-08-20 15:48:22 +00:00
(defproject ring-example "0.1.0-SNAPSHOT"
:description "Reitit Ring App with Swagger"
:dependencies [[org.clojure/clojure "1.9.0"]
2018-08-25 13:28:57 +00:00
[org.clojure/core.async "0.4.474"]
2018-09-03 09:35:28 +00:00
[funcool/promesa "1.9.0"]
[manifold "0.1.8"]
2018-09-07 20:14:12 +00:00
[ring/ring-jetty-adapter "1.7.0-RC2"]
2018-09-24 17:51:43 +00:00
[metosin/reitit "0.2.3"]]
2018-08-20 15:48:22 +00:00
:repl-options {:init-ns example.server})