-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
50 lines (45 loc) · 1.93 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
(defproject tupelo-datomic "0.9.4"
:description "Tupelo Datomic: Datomic With A Spoonful of Honey"
:url "http://github.com/cloojure/tupelo-datomic"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [ [cheshire "5.8.1"]
[danlentz/clj-uuid "0.1.7"]
[enlive "1.1.6"]
[org.clojure/clojure "1.10.0"]
[org.clojure/data.xml "0.2.0-alpha5"]
[org.clojure/spec.alpha "0.2.176"]
[org.clojure/test.check "0.9.0"]
;[org.clojure/tools.logging "0.4.0"]
[prismatic/schema "1.1.10"]
[tupelo "0.9.128"]
]
:resource-paths ["resources/"
"resources/datomic-free-0.9.5661-everything.jar"
]
:profiles { :dev {:dependencies []
:plugins [] }
:uberjar {:aot :all}}
:global-vars { *warn-on-reflection* false }
; :repositories {"my.datomic.com" {:url "https://my.datomic.com/repo"
; :creds :gpg}}
:plugins [ [lein-codox "0.10.3"] ]
:codox {:src-dir-uri "http://github.com/cloojure/tupelo-datomic/blob/master/"
:src-linenum-anchor-prefix "L"}
:deploy-repositories { "snapshots" :clojars
"releases" :clojars
:sign-releases false }
:update :daily ; :always
; :main ^:skip-aot tupelo-datomic.core
:target-path "target/%s"
:clean-targets [ "target" ]
; "lein test" will not run tests marked with the ":slow" metadata
; "lein test :slow" will only run tests marked with the ":slow" metadata
; "lein test :all" will run all tests (built-in)
:test-selectors { :default (complement :slow)
:slow :slow }
:jvm-opts ["-Xms500m" "-Xmx2g"
;"--add-modules" "java.xml.bind"
;"-server"
]
)