-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
32 lines (28 loc) · 1.35 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
(defproject org.purefn/bridges "1.13.1-SNAPSHOT"
:description "A Kurosawa library for interacting with Key-Value stores."
:url "https://github.com/purefnorg/bridges"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.7.1"
:global-vars {*warn-on-reflection* true}
:dependencies [[org.clojure/clojure "1.9.0-alpha16"]
[org.purefn/kurosawa.core "2.0.5"]
[org.clojure/test.check "0.9.0"]
[com.gfredericks/test.chuck "0.2.7"
:exclusions [clj-time]]]
:deploy-repositories
[["releases" {:url "https://clojars.org/repo/" :creds :gpg}]]
:profiles
{:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]]
:jvm-opts ["-Xmx2g"]
:source-paths ["dev"]
:codeina {:sources ["src"]
:exclude [org.purefn.bridges.version]
:reader :clojure
:target "doc/dist/latest/api"
:src-uri "http://github.com/purefnorg/bridges/blob/master/"
:src-uri-prefix "#L"}
:plugins [[funcool/codeina "0.4.0"
:exclusions [org.clojure/clojure]]
[lein-ancient "0.6.10"]]}}
:aliases {"project-version" ["run" "-m" "org.purefn.bridges.version"]})