-
Notifications
You must be signed in to change notification settings - Fork 42
/
project.clj
27 lines (25 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
23
24
25
26
27
(defproject jboss "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.5.0"]
[io.pedestal/pedestal.service "0.1.8"]
[org.immutant/immutant "0.9.0"]
;; Remove this line and uncomment the next line to
;; use Tomcat instead of Jetty:
[io.pedestal/pedestal.jetty "0.1.8"]
;; [io.pedestal/pedestal.tomcat "0.1.8"]
;; Logging
[ch.qos.logback/logback-classic "1.0.7"]
[org.slf4j/jul-to-slf4j "1.7.2"]
[org.slf4j/jcl-over-slf4j "1.7.2"]
[org.slf4j/log4j-over-slf4j "1.7.2"]]
:plugins [[lein-immutant "0.18.0"]]
:immutant {;:init immutant/init
:resolve-dependencies true
:context-path "/foo"}
:profiles {:dev {:source-paths ["dev"]}}
:min-lein-version "2.0.0"
:resource-paths ["config"]
:main ^{:skip-aot true} jboss.server)