-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 738 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject url-shortener "0.1.0-SNAPSHOT"
:description "URL shortener"
: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"]
[javax.servlet/servlet-api "2.5"]
[ring "1.9.0"]
[metosin/reitit "0.5.12"]
[metosin/muuntaja "0.6.8"]
[com.taoensso/carmine "3.2.0"]
[org.clojure/data.codec "0.1.1"]]
:main ^:skip-aot url-shortener.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})