-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (16 loc) · 895 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject com.akolov.enlive-reload "0.2.0-SNAPSHOT"
:description "autoreloading for enlive"
:url "http://kolov-it.com/automatic-reloading-enlive-templates/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[enlive "1.1.5"]
[org.clojure/tools.logging "0.3.1"]
]
:profiles {
:dev {:dependencies [[midje "1.6.3"]
[midje-junit-formatter "0.1.0-SNAPSHOT"]]
:plugins [[lein-deps-tree "0.1.2"]
[lein-midje "3.0.0"]
[test2junit "1.0.1"]]}}
)