-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
26 lines (26 loc) · 1.23 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
(defproject talispam "0.3.1-SNAPSHOT"
:description "a Bayesian mail filter"
:url "https://github.com/saidone75/talispam"
:license {:name "MIT"
:url "https://github.com/saidone75/talispam/blob/master/LICENSE"}
:dependencies [[org.clojure/clojure "1.11.2"]
[russellwhitaker/immuconf "0.3.0"]
[com.cognitect/transit-clj "1.0.333"]
[cli-matic "0.5.4"]
[org.jsoup/jsoup "1.17.2"]
[com.stuartsierra/frequencies "0.1.0"]
[tlight/spin "0.0.4"]
[jp.ne.tir/project-clj "0.1.7"]
[com.github.clj-easy/graal-build-time "1.0.5"]]
:plugins [[io.taylorwood/lein-native-image "0.3.1"]]
:main ^:skip-aot talispam.core
:target-path "target/%s"
:native-image {:name "talispam"
:opts ["-J-Xmx3g"
"--report-unsupported-elements-at-runtime"
"-H:ReflectionConfigurationFiles=./reflectconfig.json"
"--features=clj_easy.graal_build_time.InitClojureClasses"]}
:profiles {:uberjar
{:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"-Dclojure.spec.skip-macros=true"]}})