-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
20 lines (20 loc) · 1002 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject de.sveri/friendui "0.4.6"
:description "A frontend for friend library using enlive."
:url "https://github.com/sveri/friend-ui/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/core.cache "0.6.3"]
[com.cemerick/friend "0.2.1"]
[com.draines/postal "1.11.1"]
[com.taoensso.forks/ring-anti-forgery "0.3.1"]
[com.taoensso/timbre "3.2.1"]
[compojure "1.1.8"]
[lib-noir "0.8.3"]
[enlive "1.1.5"]
[de.sveri/clojure-commons "0.1.5"]]
:source-paths ["src/clj"]
:test-paths ["test" "test/resources"]
:profiles {:dev {:resource-paths ["dev-resources"]
:dependencies [[org.clojure/clojure "1.6.0"]]}}
:deploy-repositories [["clojars-self" {:url "https://clojars.org/repo"
:sign-releases false}]])