aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
blob: e9df16be7599647954025b637dbb05df9b5489b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(defproject redirectly "0.1.0-SNAPSHOT"
  :description "mini redirect service"
  :url "https://s-ol.nu/redirectly"
  :plugins [[lein-ring "0.12.5"]]
  :ring {:handler redirectly.core/handler
         :destroy redirectly.core/destroy}
  :dependencies [[org.clojure/clojure "1.10.0"]
                 [sonian/carica "1.2.2"]
                 [ring/ring-core "1.7.1"]
                 [ring/ring-jetty-adapter "1.7.1"]]
  :main redirectly.deploy
  :profiles {:uberjar {:aot :all}})
  ; :jar-exclusions [#"^config\.edn$"])