-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
19 lines (19 loc) · 848 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject bløggr "0.1.0-SNAPSHOT"
:description "Blog engine for eikeland.se"
:url "http://eikeland.se/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[stasis "1.0.0"]
[ring "1.2.2"]
[me.raynes/cegdown "0.1.1"]
[clygments "0.1.1"]
[enlive "1.1.5"]
[optimus "0.14.2"]
[clj-rss "0.1.3"]
[org.clojure/data.xml "0.0.7"]]
:ring {:handler bløggr.core/ring}
:aliases {"export" ["run" "-m" "bløggr.core/export"]}
:profiles {:dev {:plugins [[lein-ring "0.8.10"]
[lein-midje "3.1.3"]]
:dependencies [[midje "1.6.3" :exclusions [org.clojure/clojure]]]}})