forked from pedestal/pedestal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
30 lines (27 loc) · 1.4 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
27
28
29
; Copyright 2013 Relevance, Inc.
; Copyright 2014 Cognitect, Inc.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0)
; which can be found in the file epl-v10.html at the root of this distribution.
;
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
;
; You must not remove this notice, or any other, from this software.
(defproject ring-middleware "0.0.1-SNAPSHOT"
:description "pedestal sample demonstrating the use of ring middleware"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[io.pedestal/pedestal.service "0.3.1"]
[io.pedestal/pedestal.jetty "0.3.1"]
[ch.qos.logback/logback-classic "1.1.2" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.7"]
[org.slf4j/jcl-over-slf4j "1.7.7"]
[org.slf4j/log4j-over-slf4j "1.7.7"]]
:min-lein-version "2.0.0"
:resource-paths ["config", "resources"]
:profiles {:dev {:aliases {"run-dev" ["trampoline" "run" "-m" "ring-middleware.server/run-dev"]}
:dependencies [[io.pedestal/pedestal.service-tools "0.3.1"]]}}
:main ^{:skip-aot true} ring-middleware.server)