-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
project.clj
33 lines (30 loc) · 1.69 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
;; Copyright (c) Dragan Djuric. All rights reserved.
;; The use and distribution terms for this software are covered by the
;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) or later
;; which can be found in the file LICENSE at the root of this distribution.
;; By using this software in any fashion, you are agreeing to be bound by
;; the terms of this license.
;; You must not remove this notice, or any other, from this software.
(defproject uncomplicate/fluokitten "0.10.0"
:description "Category theory concepts in Clojure - Functors, Applicatives, Monads, Monoids and more."
:url "https://github.com/uncomplicate/fluokitten"
:scm {:name "git"
:url "https://github.com/uncomplicate/fluokitten"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.3"]]
:codox {:src-dir-uri "http://github.com/uncomplicate/fluokitten/blob/master"
:src-linenum-anchor-prefix "L"
:namespaces [uncomplicate.fluokitten.core
uncomplicate.fluokitten.jvm
uncomplicate.fluokitten.protocols
uncomplicate.fluokitten.test
uncomplicate.fluokitten.utils]
:exclude [uncomplicate.fluokitten.algo]
:output-path "docs/codox"}
:profiles {:dev {:dependencies [[midje "1.10.10"]]
:global-vars {*warn-on-reflection* true
*print-length* 128}
:plugins [[lein-midje "3.2.1"]
[lein-codox "0.10.8"]]}}
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"])