-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
22 lines (22 loc) · 1015 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject aws-videoindex "1.0.0-SNAPSHOT"
:description "AWS Videoindex"
:license {:name "Eclipse Public License v1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.4.0"]
[ring/ring-jetty-adapter "1.4.0"]
[environ "1.0.0"]
[amazonica "0.3.145"]
[ring/ring-json "0.4.0"]
[cheshire "5.6.3"] ; explicit cheshire dependency added to fix java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.JavaType.isReferenceType()
[hiccup "1.0.5"]
[ring/ring-codec "1.0.1"]]
:min-lein-version "2.0.0"
:plugins [[environ/environ.lein "0.3.1"]
[lein-ring "0.11.0"]]
:main ^:skip-aot aws-videoindex.web
:aot :all
:ring {:handler aws-videoindex.web/app}
:hooks [environ.leiningen.hooks]
:uberjar-name "aws-videoindex-standalone.jar"
:profiles {:production {:env {:production true}}})