forked from 4clojure/4clojure
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
24 lines (24 loc) · 1.03 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
(defproject foreclojure "1.3.0.1"
:description "4clojure - a website for lisp beginners"
:dependencies [[clojure "1.2.1"]
[clojure-contrib "1.2.0"]
[compojure "0.6.2"]
[hiccup "0.2.4"]
[clojail "0.4.0-SNAPSHOT"]
[sandbar "0.4.0-SNAPSHOT"]
[org.clojars.christophermaier/congomongo "0.1.4-SNAPSHOT"]
[org.jasypt/jasypt "1.7"]
[useful "0.7.0-beta1"]
[amalloy/ring-gzip-middleware "[0.1.0,)"]
[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"]
[org.apache.commons/commons-email "1.2"]]
:dev-dependencies [[lein-ring "0.4.5"]
[swank-clojure "1.2.1"]
[midje "1.1.1"]]
:main foreclojure.core
:ring {:handler foreclojure.core/app
:init foreclojure.mongo/prepare-mongo})