-
Notifications
You must be signed in to change notification settings - Fork 13
/
project.clj
17 lines (17 loc) · 900 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject luminus/ring-undertow-adapter "1.3.1"
:description "Ring Undertow adapter"
:url "http://github.com/luminus-framework/ring-adapter-undertow"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[io.undertow/undertow-core "2.3.5.Final"]
[ring/ring-core "1.9.6"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[clj-http "3.12.3"]
[stylefruits/gniazdo "1.2.1"]
[metosin/reitit-ring "0.5.18"]
[criterium "0.4.6"]]
:source-paths ["dev"]}
:precomp {:prep-tasks ["clean" "compile"]}}
:javac-options ["-target" "1.8" "-source" "1.8"]
:java-source-paths ["src"]
:deploy-repositories [["releases" :clojars]])