-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathproject.clj
17 lines (17 loc) · 870 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject org.clojars.haifengl/smile "4.2.0"
:description "Smile - Statistical Machine Intelligence and Learning Engine"
:url "https://haifengl.github.io"
:scm {:name "git"
:url "https://github.com/haifengl/smile"}
:license {:name "GNU General Public License, Version 3"
:url "https://opensource.org/licenses/GPL-3.0"}
:dependencies [[org.clojure/clojure "1.12.0"]
[com.github.haifengl/smile-core "4.2.0"]]
:plugins [[lein-codox "0.10.8"]]
:codox {:doc-files ["README.md"]
:project {:name "Smile - Clojure" :description "Copyright © 2010-2025 Haifeng Li. All rights reserved. Use is subject to license terms."}
:output-path "../doc/api/clojure"}
:jvm-opts ["-XX:MaxRAMPercentage=75.0"
"-XX:+UseStringDeduplication"
"-XX:+UseG1GC"]
:repl-options {:init-ns smile.ai})