-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
26 lines (21 loc) · 999 Bytes
/
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 corona-demo "0.1.0-SNAPSHOT"
:description "A search and recommendation engine demo that uses Clojure Solr 8 ML and Movies"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/data.csv "0.1.4"]
[org.clojure/data.json "0.2.6"]
[incanter "1.9.3"]
;; SOLR: 8.0.0:
[corona "0.1.7-SNAPSHOT"]
;; CORTEX
[thinktopic/cortex "0.9.22"]
[thinktopic/experiment "0.9.22"]
[thinktopic/think.datatype "0.3.17"]
;; MXNET: Choose your MxNet dep:
#_[org.apache.mxnet.contrib.clojure/clojure-mxnet-linux-cpu "1.4.0"]
[org.apache.mxnet.contrib.clojure/clojure-mxnet-osx-cpu "1.4.0"]
]
:resource-paths ["resources" "target"]
:source-paths ["src/clj" "src/cljc"]
:clean-targets ^{:protect false} ["target"]
:profiles {:uberjar {:aot :all}}
:main corona-demo.core)