-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
project.clj
40 lines (31 loc) · 1.03 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(defproject igoki "0.8.0"
:description "Igoki, physical Go board/OGS interface"
:url "http://github.com/CmdrDats/igoki"
:license
{:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies
[[org.clojure/clojure "1.10.3"]
#_[com.google.guava/guava "20.0"]
[clj-http "3.12.3"]
[seesaw "1.5.0"]
[org.openpnp/opencv "4.5.1-2"]
[cheshire "5.10.1"]
[de.schlichtherle.truezip/truezip-file "7.7.10"]
[de.schlichtherle.truezip/truezip-driver-zip "7.7.10"]
[io.socket/socket.io-client "0.9.0"]
[org.clojure/tools.logging "1.1.0"]
[log4j "1.2.17"]
[org.slf4j/slf4j-api "1.7.32"]
[org.slf4j/jul-to-slf4j "1.7.32"]
[org.slf4j/slf4j-log4j12 "1.7.32"]
[org.nd4j/nd4j "1.0.0-M1.1" :extension "pom"]
[org.nd4j/nd4j-native-platform "1.0.0-M1.1"]
[org.deeplearning4j/deeplearning4j-core "1.0.0-M1.1"]]
:main igoki.core
:repl-options
{:welcome "Welcome to igoki"
:init-ns igoki.core
:init (-main)}
#_#_:min-lein-version "2.5.0"
:uberjar-name "igoki.jar")