reitit/examples/ring-integrant/project.clj

11 lines
446 B
Clojure
Raw Normal View History

2019-10-10 19:51:08 +00:00
(defproject ring-integrant-example "0.1.0-SNAPSHOT"
:description "Reitit Ring App with Integrant"
2024-04-19 11:30:58 +00:00
:dependencies [[org.clojure/clojure "1.11.2"]
[ring/ring-jetty-adapter "1.12.1"]
2024-04-30 08:12:39 +00:00
[metosin/reitit "0.7.0-alpha8"]
2024-04-19 11:30:58 +00:00
[integrant "0.8.1"]]
:main example.server
:repl-options {:init-ns user}
2024-04-19 11:30:58 +00:00
:profiles {:dev {:dependencies [[integrant/repl "0.3.3"]]
:source-paths ["dev"]}})