-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (19 loc) · 782 Bytes
/
project.clj
File metadata and controls
20 lines (19 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(def project-version "2.0.0-SNAPSHOT")
(defproject stackim project-version
:description "URL shortener for Stack Overflow profiles"
:url "http://stack.im/"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/java.jdbc "0.7.12"]
[compojure "1.6.2"]
[http-kit "2.5.3"]
[org.postgresql/postgresql "42.3.1"]
[selmer "1.12.45"]]
:main ^:skip-aot stackim.core
:target-path "target/%s"
:jar-name "stackim.jar"
:uberjar-name "stackim-standalone.jar"
:manifest {"Implementation-Version" ~project-version}
:profiles {:dev {:dependencies [[ring/ring-mock "0.4.0"]]}
:uberjar {:aot :all}}
:plugins [[dev.weavejester/lein-cljfmt "0.13.1"]])