-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
29 lines (26 loc) · 1.42 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
(defproject immutant-foo "0.0.1-SNAPSHOT"
:description "FIXME: write description"
: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"]
[org.immutant/web "2.x.incremental.353"]
[io.pedestal/pedestal.service "0.3.1"]
;; Remove this line and uncomment one of the next lines to
;; use Tomcat or Immutant instead of Jetty:
;;[io.pedestal/pedestal.jetty "0.3.1"]
;; [io.pedestal/pedestal.tomcat "0.3.1"]
[io.pedestal/pedestal.immutant "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" "immutant-foo.server/run-dev"]}
:dependencies [[io.pedestal/pedestal.service-tools "0.3.1"]]}
:uberjar {:aot [immutant-foo.server]}}
:plugins [[lein-immutant "2.0.0.alpha2"]]
:main ^{:skip-aot true} immutant-foo.server
:repositories [["Immutant 2.x incremental builds"
"http://downloads.immutant.org/incremental/"]])