-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
executable file
·62 lines (42 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
51
52
53
54
55
56
57
58
59
60
61
62
(defproject org.clojars.martinodb/zinc "1.0.0-SNAPSHOT"
:description "An unofficial fork to turn CSNePS into a library"
:url "https://github.com/martinodb/Zinc"
:license {:name "University at Buffalo Public License - v 1.0"
:url "https://cse.buffalo.edu/sneps/ubpl.pdf"
:distribution :repo
:comments "same as CSNePS"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/core.match "0.2.2"]
[org.clojure/core.memoize "0.7.1"]
[org.clojure/math.numeric-tower "0.0.4"]
[org.clojure/math.combinatorics "0.1.4"]
[org.clojure/tools.trace "0.7.10"]
[org.clojure/tools.nrepl "0.2.13"]
[junit/junit "4.12"]
;;; added by martinodb
[com.taoensso/timbre "4.10.0"] ; logging
[org.clojure/tools.logging "0.4.1"]
;;;
;;; this is new
[org.clojure/tools.cli "0.4.1"]
[reply/reply "0.4.3"]
;;;;;;;
]
:profiles
{:dev {:source-paths ["dev" "src" "test"]
:dependencies [ [org.clojure/tools.namespace "0.2.10"] ]
:plugins [ [lein-ancient "0.6.15"] ] }
;:uberjar {:aot :all}
}
:source-paths ["src/clj/"]
:source-path "src/clj/"
:java-source-paths ["src/jvm/"] ;leiningen 2 compat.
:java-source-path "src/jvm/" ;leiningen 1.x compat.
;:project-init (require 'clojure.pprint)
:repl-options {:init-ns zinc.core.snuser
:print clojure.core/println} ; :print clojure.pprint/pprint
:timeout 250000
:jvm-opts ["-server"]
;:main zinc.core.snuser
;:local-repo "../../bobtailbot/local-m2"
)