-
Notifications
You must be signed in to change notification settings - Fork 25
/
project.clj
70 lines (67 loc) · 3.49 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
63
64
65
66
67
68
69
70
;; Copyright ⓒ the conexp-clj developers; 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)
;; 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 conexp-clj "2.6.0"
:min-lein-version "2.0.0"
:description "A ConExp rewrite in clojure -- and so much more ..."
:url "http://github.com/tomhanika/conexp-clj/"
:scm {:url "[email protected]:tomhanika/conexp-clj.git"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.3"]
[org.clojure/core.async "1.6.681"]
[org.clojure/data.csv "1.1.0"]
[org.clojure/data.int-map "1.3.0"]
[org.clojure/data.json "2.5.0"]
[org.clojure/data.xml "0.0.8"]
[org.clojure/math.combinatorics "0.3.0"]
[org.clojure/math.numeric-tower "0.1.0"]
[org.clojure/tools.cli "1.1.230"]
[org.apache.commons/commons-math "2.2"]
[org.clojure/algo.generic "1.0.1"]
[seesaw "1.5.0"]
[reply "0.5.1"
:exclusions [org.clojure/clojure
clojure-complete
com.cemerick/drawbridge]]
[aysylu/loom "1.0.2"]
[rolling-stones "1.0.3"
:exclusions [org.clojure/clojure]]
[clj-http "3.13.0"]
[clojure-complete "0.2.5"]
[ring/ring-devel "1.12.1"]
[ring/ring-core "1.12.1"]
[ring/ring-json "0.5.1"]
[ring-cors "0.1.13"]
[http-kit "2.8.0"]
[org.apache.commons/commons-math3 "3.6.1"]
[luposlip/json-schema "0.4.5"]
[net.mikera/core.matrix "0.63.0"]]
:profiles {:uberjar {:main conexp.main
:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.4.0"]
[nrepl/nrepl "1.1.2"]]
:plugins [[lein-aot-order "0.1.0"]]
:aot :order}
:dev {:main conexp.main
:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.4.0"]
[nrepl/nrepl "1.1.2"]
[com.clojure-goes-fast/clj-async-profiler "1.2.2"]]
:plugins [[lein-aot-order "0.1.0"]]
:javac-options ["-Xlint:deprecation" "-Xlint:unchecked"]
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}}
:keep-non-project-classes true
:source-paths ["src/main/clojure" "src/test/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["src/test/clojure"]
:resource-paths ["src/main/resources"]
:target-path "builds/%s"
:compile-path "%s/classes/"
:java-opts ["-Dawt.useSystemAAFontSettings=on" "-Xmx4G"]
:repl-options {:init-ns conexp.analysis
:init (use 'conexp.analysis :reload)})