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-23 17:38:08 +02:00
|
|
|
[ring/ring-jetty-adapter "1.7.1"]
|
2020-06-22 17:21:05 +02:00
|
|
|
[ring/ring-defaults "0.3.2"]
|
2020-06-22 22:30:59 +02:00
|
|
|
[http.async.client "1.3.1"]
|
2020-06-23 17:38:08 +02:00
|
|
|
[hickory "0.7.1"]
|
|
|
|
[environ "1.1.0"]]
|
2020-06-05 20:28:33 +02:00
|
|
|
:plugins [[lein-ring "0.12.5"]]
|
2020-06-24 16:06:31 +02:00
|
|
|
:ring {:handler clojsa.handler/app
|
|
|
|
:nrepl {:start? true :port 9000}}
|
2020-06-23 17:17:10 +02:00
|
|
|
:uberjar-name "clojsa-standalone.jar"
|
2020-06-05 20:28:33 +02:00
|
|
|
:profiles
|
|
|
|
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
|
2020-06-23 17:17:10 +02:00
|
|
|
[ring/ring-mock "0.3.2"]]}
|
|
|
|
:production {:env {:production true}}})
|