forked from yogthos/yuggoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
17 lines (16 loc) · 857 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject yuggoth "0.4.0-SNAPSHOT"
:description "personal blog engine"
:dependencies [[org.clojure/clojure "1.4.0"]
[noir "1.3.0-beta3" :exclude [org.clojure/clojure]]
[markdown-clj "0.9.9"]
[org.clojure/java.jdbc "0.2.3"]
[net.sf.jlue/jlue-core "1.3"]
[joda-time "2.0"]
[clj-rss "0.1.2"]
[postgresql/postgresql "9.1-901.jdbc4"]
[clavatar "0.1.0"]]
:plugins [[lein-ring "0.7.5"]]
:dev-dependencies [[lein-ring "0.7.5"]]
:ring {:handler yuggoth.server/handler
:init config/init-config}
:main yuggoth.server)