-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 869 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject guestbook "1.0.0"
:description "Guestbook Exercise from Web Development with Clojure"
:url "https://pragprog.com/book/dswdcloj/web-development-with-clojure"
:license "The BSD 2-Clause License"
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.1.6"]
[hiccup "1.0.5"]
[ring-server "0.3.1"]
[lib-noir "0.9.5"]
[org.clojure/java.jdbc "0.3.6"]
[org.xerial/sqlite-jdbc "3.8.7"]]
:plugins [[lein-ring "0.8.12"]]
:ring {:handler guestbook.handler/app
:init guestbook.handler/init
:destroy guestbook.handler/destroy}
:profiles
{:uberjar {:aot :all}
:production
{:ring
{:open-browser? false, :stacktraces? false, :auto-reload? false}}
:dev
{:dependencies [[ring-mock "0.1.5"] [ring/ring-devel "1.3.1"]]}})