-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (26 loc) · 1.16 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
(defproject imagestash "0.1.0-SNAPSHOT"
:description "Image resizing and caching platform"
:url "http://bitbucket.com/niktheblak/imagestash"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.12.0"]
[org.imgscalr/imgscalr-lib "4.2"]
[metosin/compojure-api "1.1.14"]
[metosin/ring-http-response "0.9.4"]
[clj-time "0.15.2"]
[org.clojure/tools.logging "1.3.0"]]
:jvm-opts ["-Djava.awt.headless=true"]
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["src/test/clojure"]
:target-path "target/%s"
:plugins [[lein-ring "0.12.6"]]
:uberjar-name "server.jar"
:profiles {:uberjar {:resource-paths ["swagger-ui"]
:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dclojure.compiler.elide-meta=[:doc :file :line :added]"]}}
:ring {:handler imagestash.service/app
:port 8080
:init imagestash.service/start
:destroy imagestash.service/stop})