-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
27 lines (27 loc) · 1.64 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 spicerack "0.1.6"
:description "A Clojure wrapper for MapDB, which is a fast disk-persistent data-structure library."
:url "https://github.com/jackrusher/spicerack"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.eclipse.collections/eclipse-collections-api "10.1.0"]
[org.eclipse.collections/eclipse-collections "10.1.0"]
[org.eclipse.collections/eclipse-collections-forkjoin "10.1.0"]
[com.google.guava/guava "28.2-jre"]
[org.jetbrains.kotlin/kotlin-stdlib "1.2.71"] ; see exclusion
[org.mapdb/mapdb "3.0.8"
:exclusions [org.eclipse.collections/eclipse-collections-api
org.eclipse.collections/eclipse-collections
org.eclipse.collections/eclipse-collections-forkjoin
com.google.guava/guava
;; Use specific Kotlin version (above)
;; instead of MapDB's version range:
org.jetbrains.kotlin/kotlin-stdlib]]]
:profiles {:codox {:dependencies [[codox-theme-rdash "0.1.2"]]
:plugins [[lein-codox "0.10.3"]]
:codox {:project {:name "spicerack"}
:metadata {:doc/format :markdown}
:themes [:rdash]
:output-path "gh-pages"}}}
:aliases {"codox" ["with-profile" "codox,dev" "codox"]}
:deploy-repositories [["releases" :clojars]])