-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
23 lines (23 loc) · 1.08 KB
/
project.clj
File metadata and controls
23 lines (23 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject proomp "0.7.0-SNAPSHOT"
:description "A Clojure workspace for Stable Diffusion"
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/data.json "2.4.0"]
[clojure-interop/javax.imageio "1.0.5"]
[http-kit "2.7.0-SNAPSHOT"]
[cambium/cambium.core "1.1.1"]
[cambium/cambium.codec-simple "1.0.0"]
[cambium/cambium.logback.core "0.4.5"]
[clj-python/libpython-clj "2.024"]
[org.jcodec/jcodec-javase "0.2.5"]
[org.jcodec/jcodec "0.2.5"]]
:plugins [[test2junit "1.4.4"]
[lein-cloverage "1.2.4"]
[lein-codox "0.10.8"]]
:test2junit-output-dir "./target/test2junit"
:test2junit-run-ant false ;todo setup or run "ant create_html_report" manually
:codox {:output-path "./docs"}
:jvm-opts ["--add-modules" "jdk.incubator.foreign,jdk.incubator.vector"
"--enable-native-access=ALL-UNNAMED"]
:repl-options {:init-ns proomp.config}
:aot [proomp.core]
:main proomp.core)