-
Notifications
You must be signed in to change notification settings - Fork 77
/
project.clj
84 lines (84 loc) · 5.3 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
75
76
77
78
79
80
81
82
83
84
(defproject org.danielsz/system "0.4.7-SNAPSHOT"
:description "Reloaded components à la carte"
:url "https://github.com/danielsz/system"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[prismatic/schema "1.1.12"]
[org.danielsz/lang-utils "0.1.3"]
[org.clojure/tools.namespace "1.1.0"]
[io.aviso/pretty "0.1.37"]
[com.stuartsierra/component "1.0.0"]]
:profiles {:test {:dependencies [[org.clojure/clojurescript "1.8.34"]
[nrepl "0.4.5"]
[org.clojure/tools.nrepl "0.2.13"]
[nrepl "0.6.0"]
[ring "1.6.2"]
[ring/ring-defaults "0.3.1"]
[ring/ring-mock "0.3.1"]
[bk/ring-gzip "0.2.1"]
[bidi "2.1.2"]
[im.chit/hara.io.watch "2.1.7"]
[im.chit/hara.io.scheduler "2.3.6"]
[im.chit/adi "0.3.2"]
[com.datomic/datomic-free "0.9.4815.12"]
[com.novemberain/monger "3.1.0"]
[org.clojure/java.jdbc "0.3.5"]
[com.h2database/h2 "1.4.181"]
[org.postgresql/postgresql "9.4-1201-jdbc41"]
[com.novemberain/langohr "2.11.0"]
[clojurewerkz/neocons "3.0.0"]
[clojurewerkz/quartzite "2.0.0"]
[com.taoensso/sente "1.8.1"]
[org.danielsz/etsy "0.1.2"]
[org.danielsz/benjamin "0.1.3"]
[org.danielsz/kampbell "0.1.6"]
[org.danielsz/maarschalk "0.1.3"]
[riemann-clojure-client "0.5.0"]
[io.netty/netty-all "4.1.34.Final"]
[compojure "1.4.0"]
[com.unboundid/unboundid-ldapsdk "4.0.14"]
[http-kit "2.4.0-alpha3"]
[lambdacd "0.13.2"]
[org.immutant/web "2.1.2"]
[hikari-cp "1.6.1"]
[clj-http "3.7.0"]
[javax.xml.bind/jaxb-api "2.3.1"]
[com.taoensso/encore "2.91.0"]
[com.taoensso/carmine "2.16.0"]
[io.replikativ/konserve-carmine "0.1.1"]
[org.elasticsearch/elasticsearch "1.6.0"
:exclusions [org.antlr/antlr-runtime
org.apache.lucene/lucene-analyzers-common
org.apache.lucene/lucene-grouping
org.apache.lucene/lucene-highlighter
org.apache.lucene/lucene-join
org.apache.lucene/lucene-memory
org.apache.lucene/lucene-misc
org.apache.lucene/lucene-queries
org.apache.lucene/lucene-queryparser
org.apache.lucene/lucene-sandbox
org.apache.lucene/lucene-spatial
org.apache.lucene/lucene-suggest
org.ow2.asm/asm
org.ow2.asm/asm-commons]]
[aleph "0.4.0-alpha9"]
[io.replikativ/konserve "0.4.8"]
[factual/durable-queue "0.1.5"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]]
:doo {:build "test"}
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/testable.js"
:main system.cljs-runner
:optimizations :none}}]}}
:doc {:plugins [[lein-codox "0.10.3"]]
:codox {:namespaces [system.components.handler
system.components.middleware
system.components.endpoint
system.components.core-async-pubsub]}}}
:scm {:name "git"
:url "https://github.com/danielsz/system"}
:test-selectors {:default (complement :dependency)
:dependency :dependency})