-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
27 lines (27 loc) · 1.2 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
25
26
27
(defproject ticktok-rest-plugin "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "https://ticktok.io"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[clj-http "3.10.0"]
[compojure "1.6.1"]
[ring "1.7.1"]
[ring/ring-json "0.4.0"]
[org.clojure/data.json "0.2.6"]
[ticktok "1.0.10"]
[aero "1.1.3"]]
:profiles {:dev {:dependencies [[midje "1.9.9"]
[ring/ring-mock "0.3.2"]
[org.clojure/core.async "0.6.532"]
[ring/ring-servlet "1.2.0-RC1"]
[http-kit "2.3.0"]]
:plugins [[lein-midje "3.2.1"]
[lein-heroku "0.5.3"]]
:resource-paths ["src/resources"]}}
:plugins [[lein-ring "0.12.5"]]
:min-lein-version "2.0.0"
:ring {:handler ticktok-rest-plugin.core/app}
:uberjar-name "ticktok-rest-plugin-standalone.jar"
:heroku {:app-name "ticktok-rest-plugin"
:jdk-version "1.8"})