clojsa/project.clj

15 lines
547 B
Clojure
Raw Permalink Normal View History

2020-06-05 20:28:33 +02:00
(defproject clojsa "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[compojure "1.6.1"]
2020-06-22 17:21:05 +02:00
[ring/ring-defaults "0.3.2"]
[http.async.client "1.3.1"]
2020-06-22 17:21:05 +02:00
[hickory "0.7.1"]]
2020-06-05 20:28:33 +02:00
:plugins [[lein-ring "0.12.5"]]
:ring {:handler clojsa.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.2"]]}})