-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
52 lines (39 loc) · 1.27 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
(defproject paralab "0.2.0-SNAPSHOT"
; GENERAL OPTIONS
:description "paralab library"
:url "http://github.com/lopusz/paralab"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:aot :all
:omit-source true
;; options used by Java
;;; run with assertions enabled
:jvm-opts ["-ea"]
;;; hints on java code, sometimes maybe useful
;;; :javac-options [ "-Xlint"]
;; enable reflection warnings
;;;:global-vars {*warn-on-reflection* true}
; DEPENDENCIES
:dependencies [
[org.clojure/clojure "1.6.0"]
[pjstadig/assertions "0.1.0"]
[org.clojure/math.numeric-tower "0.0.4"]
]
; SOURCE DIRECTORY RECONFIGURATION
:source-paths ["src" "src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths [ "src/test/clojure"]
; PLUGINS + CONFIGURATION
:plugins [
[codox "0.8.7"]
[lein-ancient "0.5.5"]
]
;; codox configuration
:codox {
:output-dir "target/apidoc"
:exclude paralab.fj-reducers
:sources [ "src/main/clojure"]
:defaults {:doc/format :markdown}
:src-dir-uri "http://github.com/lopusz/paralab/blob/master/"
:src-linenum-anchor-prefix "L"
} )