|
1 | 1 | {:paths ["src" "target/classes"] |
2 | 2 |
|
3 | | - :deps { |
4 | | - org.clojure/clojure {:mvn/version "1.10.3"} |
5 | | - ai.djl/api {:mvn/version "0.16.0"} |
6 | | - ai.djl/model-zoo {:mvn/version "0.16.0"} |
7 | | - ai.djl/basicdataset {:mvn/version "0.16.0"} |
8 | | - ai.djl.mxnet/mxnet-engine {:mvn/version "0.16.0"} |
9 | | - ai.djl.mxnet/mxnet-native-auto {:mvn/version "1.8.0"} |
10 | | - net.mikera/core.matrix {:mvn/version "0.62.0"} |
11 | | - org.slf4j/slf4j-api {:mvn/version "1.7.32"} |
12 | | - org.slf4j/slf4j-nop {:mvn/version "1.7.32"} |
13 | | - } |
14 | | - :aliases { |
15 | | - :codox {:extra-deps {codox/codox {:mvn/version "0.10.8"} |
16 | | - codox-theme-rdash/codox-theme-rdash {:mvn/version "0.1.2"}} |
17 | | - :exec-fn codox.main/generate-docs |
18 | | - :exec-args {:project {:name "clj-djl"} |
19 | | - :metadata {:doc/format :markdown} |
20 | | - :themes [:rdash] |
21 | | - :source-paths ["src"] |
22 | | - :source-uri "https://github.com/scicloj/clj-djl/blob/master/{filepath}#L{line}" |
23 | | - :output-path "docs"}} |
| 3 | + :deps |
| 4 | + {org.clojure/clojure {:mvn/version "1.10.3"} |
| 5 | + ai.djl/api {:mvn/version "0.16.0"} |
| 6 | + ai.djl/model-zoo {:mvn/version "0.16.0"} |
| 7 | + ai.djl/basicdataset {:mvn/version "0.16.0"} |
| 8 | + ai.djl.mxnet/mxnet-engine {:mvn/version "0.16.0"} |
| 9 | + ai.djl.mxnet/mxnet-native-auto {:mvn/version "1.8.0"} |
| 10 | + net.mikera/core.matrix {:mvn/version "0.62.0"} |
| 11 | + org.slf4j/slf4j-api {:mvn/version "1.7.32"} |
| 12 | + org.slf4j/slf4j-nop {:mvn/version "1.7.32"}} |
24 | 13 |
|
25 | | - :build {:extra-deps {io.github.seancorfield/build-clj |
26 | | - {:git/tag "v0.8.0" :git/sha "9bd8b8a"}} |
27 | | - :ns-default build} |
| 14 | + :aliases |
| 15 | + {:codox {:extra-deps {codox/codox {:mvn/version "0.10.8"} |
| 16 | + codox-theme-rdash/codox-theme-rdash {:mvn/version "0.1.2"}} |
| 17 | + :exec-fn codox.main/generate-docs |
| 18 | + :exec-args |
| 19 | + {:project {:name "clj-djl"} |
| 20 | + :metadata {:doc/format :markdown} |
| 21 | + :themes [:rdash] |
| 22 | + :source-paths ["src"] |
| 23 | + :source-uri "https://github.com/scicloj/clj-djl/blob/master/{filepath}#L{line}" |
| 24 | + :output-path "docs"}} |
28 | 25 |
|
29 | | - :test {:extra-paths ["test"] |
30 | | - :extra-deps {io.github.cognitect-labs/test-runner |
31 | | - {:git/tag "v0.5.1" :git/sha "dfb30dd"}} |
32 | | - :main-opts ["-m" "cognitect.test-runner"]}}} |
| 26 | + :build {:extra-deps {io.github.seancorfield/build-clj |
| 27 | + {:git/tag "v0.8.0" :git/sha "9bd8b8a"}} |
| 28 | + :ns-default build} |
| 29 | + |
| 30 | + :test {:extra-paths ["test"] |
| 31 | + :extra-deps {io.github.cognitect-labs/test-runner |
| 32 | + {:git/tag "v0.5.1" :git/sha "dfb30dd"}} |
| 33 | + :main-opts ["-m" "cognitect.test-runner"]}}} |
0 commit comments