diff options
Diffstat (limited to 'reify-health/project.clj')
-rw-r--r-- | reify-health/project.clj | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/reify-health/project.clj b/reify-health/project.clj new file mode 100644 index 0000000..2dcb252 --- /dev/null +++ b/reify-health/project.clj @@ -0,0 +1,12 @@ +(defproject reify "0.1.0-SNAPSHOT" + :description "FIXME: write description" + :url "http://example.com/FIXME" + :min-lein-version "2.0.0" + :dependencies [[org.clojure/clojure "1.8.0"] + [compojure "1.5.1"] + [ring/ring-defaults "0.2.1"]] + :plugins [[lein-ring "0.9.7"]] + :ring {:handler reify.handler/app} + :profiles + {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] + [ring/ring-mock "0.3.0"]]}}) |