-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 924 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject notes "0.1.0-SNAPSHOT"
:description "Simple Notes app to demo PaaS deployment"
:url "https://github.com/citerus/notes"
:dependencies [[org.clojure/clojure "1.5.1"]
[compojure "1.1.6"]
[com.novemberain/monger "1.7.0"]
[clj-time "0.6.0"]
[cheshire "5.3.1"] ;required for Joda Time/Mongo intreop
[hiccup "1.0.4"]
[org.clojure/data.json "0.2.4"]
[ring/ring-jetty-adapter "1.2.1"]]
:plugins [[lein-ring "0.8.12"]]
:ring {:handler notes.handler/app
:init notes.handler/init
:servlet-version "2.5"}
:min-lein-version "2.0.0"
:profiles {:dev {:resource-paths ["resources"]}})