-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (24 loc) · 1.19 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 uap-clj-heroku "1.0.0"
:description "Heroku-specific Clojure REST API for the uap-clj useragent parser"
:url "https://github.com/russellwhitaker/uap-clj-heroku"
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.5.1"]
[ring/ring-json "0.4.0"]
[ring/ring-jetty-adapter "1.5.0"]
[ring/ring-devel "1.5.0"]
[ring-basic-authentication "1.0.5"]
[environ "1.1.0"]
[cheshire "5.6.3"]
[uap-clj "1.3.1"]]
:min-lein-version "2.0.0"
:plugins [[environ/environ.lein "0.2.1"]
[lein-ancient "0.6.10"]
[speclj "3.3.2"]]
:uberjar-name "uap-clj-heroku-standalone.jar"
:profiles {:production {:env {:production true}}
:uberjar {:aot :all}
:dev {:dependencies [[speclj "3.3.2"]
[ring/ring-mock "0.3.0"]]
:test-paths ["spec"]}}
:aliases {"test" ["do" ["clean"] ["spec" "--reporter=d"]]
"build" ["do" ["clean"] ["uberjar"]]})