forked from 4clojure/4clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
27 lines (27 loc) · 1.12 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(defproject foreclojure "1.7.0"
:description "4clojure - a website for learning Clojure"
:dependencies [[clojure "1.2.1"]
[clojure-contrib "1.2.0"]
[compojure "0.6.2"]
[hiccup "0.3.6"]
[clojail "0.5.1"]
[sandbar "0.4.0-SNAPSHOT"]
[org.clojars.christophermaier/congomongo "0.1.4-SNAPSHOT"]
[org.jasypt/jasypt "1.7"]
[cheshire "2.0.2"]
[useful "0.7.0-beta5"]
[amalloy/ring-gzip-middleware "[0.1.0,)"]
[amalloy/mongo-session "0.0.1"]
[clj-github "1.0.1"]
[ring "0.3.7"]
[clj-config "0.1.0"]
[incanter/incanter-core "1.2.3"]
[incanter/incanter-charts "1.2.3"]
[commons-lang "2.6"]
[org.apache.commons/commons-email "1.2"]]
:dev-dependencies [[lein-ring "0.4.5"]
[midje "1.1.1"]]
:checksum-deps true
:main foreclojure.core
:ring {:handler foreclojure.core/app
:init foreclojure.mongo/prepare-mongo})