-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
74 lines (65 loc) · 4.22 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
(defproject org.immutant/immutant-parent "1.1.2-SNAPSHOT"
:description "Parent for all that is Immutant"
:plugins [[lein-modules "0.2.4"]]
:packaging "pom"
:profiles {:provided
{:dependencies [[org.clojure/clojure _]
[org.jboss.as/jboss-as-server _]]}
:dev
{:dependencies [[midje/midje "1.6.3"]]}
:dist {}
:integ {}
:fast {:modules {:subprocess false}}}
:modules {:inherited {:hooks [immutant.build.plugin.pom/hooks]
:plugins [[org.immutant/immutant-build-support "1.1.2-SNAPSHOT"]]
:repositories [["projectodd-upstream"
{:url "http://repository-projectodd.forge.cloudbees.com/upstream"
:snapshots false}]
["projectodd-release"
{:url "http://repository-projectodd.forge.cloudbees.com/release"
:snapshots false}]
["projectodd-snapshot"
{:url "https://repository-projectodd.forge.cloudbees.com/snapshot"
:snapshots true}]
["jboss"
"https://repository.jboss.org/nexus/content/groups/public-thirdparty-releases/"]]
:source-paths ^:replace ["src/main/clojure"]
:test-paths ^:replace ["src/test/clojure"]
:resource-paths ^:replace ["src/module/resources" "src/test/resources" "src/main/resources"]
:java-source-paths ^:replace ["src/main/java"]
:jar-exclusions [#"\.java$"]
;; This is occasionally broken due to
;; https://github.com/technomancy/leiningen/issues/878
:aliases {"all" ^:displace ["do" "clean," "test," "install"]
"-i" ["with-profile" "+fast"]}
:license {:name "GNU Lesser General Pulic License v2.1"
:url "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"}
:mailing-list {:name "Immutant users list"
:unsubscribe "[email protected]"
:subscribe "[email protected]"
:post "[email protected]"}
:url "http://immutant.org"
:scm {:name "git", :url "https://github.com/immutant/immutant/"}}
:versions {org.clojure/clojure "1.6.0"
org.clojure/tools.nrepl "0.2.3"
leiningen-core/leiningen-core "2.3.4"
org.infinispan/infinispan-core "6.0.0.Final"
cheshire/cheshire "5.2.0"
clj-stacktrace/clj-stacktrace "0.2.7"
clojure-complete/clojure-complete "0.2.2"
org.tcrawley/dynapath "0.2.3"
:immutant "1.1.2-SNAPSHOT"
:ring "1.2.1"
:jbossas "7.2.x.slim.incremental.16"
:polyglot "1.20.0"
:hornetq "2.3.1.Final"
:shimdandy "1.0.1"
ring :ring
org.hornetq :hornetq
org.immutant :immutant
org.jboss.as :jbossas
org.projectodd :polyglot
org.projectodd.shimdandy :shimdandy
org.immutant/immutant-dependency-exclusions "0.1.0"
org.immutant/deploy-tools "0.12.0"
org.immutant/fntest "0.5.2"}})