-
Notifications
You must be signed in to change notification settings - Fork 13
/
project.clj
22 lines (22 loc) · 1.11 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
(defproject geheimtur "0.4.1-SNAPSHOT"
:description "a secret door to your Pedestal application"
:url "http://github.com/propan/geheimtur"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:exclusions [org.clojure/clojure]
:dependencies [[io.pedestal/pedestal.service "0.5.4"]
[org.mindrot/jbcrypt "0.4"]
[commons-codec "1.10"]
[clj-http "3.4.1"]
;; optional dependencies of clj-http
;; to enable response body coersion
[cheshire "5.7.0"]
[ring/ring-codec "1.0.1"]
;; integration tests
[javax.servlet/javax.servlet-api "3.1.0" :scope "test"]
[org.slf4j/slf4j-nop "1.7.25" :scope "test"]]
:deploy-repositories [["releases" :clojars {:creds :gpg}]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}}
:aliases {"all" ["with-profile" "dev,1.8:dev,1.7:dev"]})