-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 748 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject cryogen "0.1.0"
:description "Simple static site generator"
:url "https://github.com/lacarmen/cryogen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[ring/ring-devel "1.5.1"]
[compojure "1.5.2"]
[ring-server "0.4.0"]
[cryogen-markdown "0.1.6"]
[cryogen-core "0.1.55"]]
:plugins [[lein-ring "0.9.7"]]
:main cryogen.core
:ring {:init cryogen.server/init
:handler cryogen.server/handler})