-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.clj
34 lines (34 loc) · 1.77 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
30
31
32
33
34
(defproject demo "0.2.0-SNAPSHOT"
:description "Demo of Immutant 2.x libraries"
:url "http://github.com/immutant/feature-demo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.immutant/immutant "2.1.8"]
[compojure "1.4.0"]
[ring/ring-devel "1.3.1"]
[org.clojure/core.memoize "0.5.6"]
[clj-time "0.9.0"]
[cheshire "5.4.0"]
[environ "1.0.0"]
[org.clojure/java.jdbc "0.3.6"]
[com.h2database/h2 "1.3.176"]]
:repositories [["Immutant incremental builds"
"http://downloads.immutant.org/incremental/"]]
:plugins [[lein-immutant "2.1.0"]
[lein-environ "1.0.1"]]
:main demo.core
:uberjar-name "demo-standalone.jar"
:min-lein-version "2.4.0"
:jvm-opts ["-Dhornetq.data.dir=target/hornetq-data"
"-Dcom.arjuna.ats.arjuna.objectstore.objectStoreDir=target/ObjectStore"]
:aliases {"msg-client" ["run" "-m" "demo.remote-messaging-client"]}
:profiles {:uberjar {:aot [demo.core]}
:eap {:exclusions [org.hornetq/hornetq-jms-server org.hornetq/hornetq-server
org.jboss.narayana.jta/narayana-jta]
:dependencies [[org.hornetq/hornetq-jms-server "2.3.25.Final"]
[org.hornetq/hornetq-server "2.3.25.Final"]
[org.jboss.jbossts.jta/narayana-jta "4.17.29.Final"]]
:immutant {:war {:resource-paths ["eap-resources"]}}}
:http2 {:java-agents [[org.mortbay.jetty.alpn/jetty-alpn-agent "2.0.3"]]
:env {:ssl-port 8443, :http2? true}}})