-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (34 loc) · 1.43 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
28
29
30
31
32
33
34
35
36
37
(defproject oura-to-beeminder "0.1.1"
:description "Syncs Oura data to Beeminder."
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [
[org.clojure/clojure "1.10.0"]
[ring/ring-core "1.8.0"]
[ring/ring-jetty-adapter "1.8.0"]
[ring-cors "0.1.13"]
[compojure "1.7.0"]
[clj-http "3.12.3"]
[org.clojure/data.json "1.0.0"]
[environ "1.2.0"]
[org.clojure/tools.logging "1.1.0"]
[ch.qos.logback/logback-classic "1.2.3"]
]
:plugins [[lein-environ "1.2.0"]]
:profiles {
:dev [:project/dev :profiles/dev]
:test [:project/test :profiles/test]
:repl [:project/repl :profiles/repl]
;; only edit :profiles/* in profiles.clj
:profiles/dev {}
:profiles/test {}
:profiles/repl {}
:project/dev {:source-paths ["src"]
:dependencies []
:plugins [[lein-pprint "1.3.2"]]}
:project/test {}
:project/repl {}
:uberjar {:aot :all}}
:main ^:skip-aot oura-to-beeminder.core
:repl-options {:init-ns oura-to-beeminder.core})