-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
21 lines (21 loc) · 884 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject logos "2.0.2-SNAPSHOT"
:description "FIXME: write description"
: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.1"]
[org.clojure/data.json "0.2.0"]
[compojure "1.6.1"]
[http-kit "2.3.0"]
[reagent "1.1.0"]
[re-frame "1.2.0"]
[ring-cors "0.1.13"]
[ring/ring-defaults "0.3.2"]
[com.taoensso/timbre "5.2.1"]]
:source-paths ["src/clj" "src/cljs"]
:test-paths ["test/"]
:resource-paths ["resources"]
:main ^:skip-aot logos.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})