This repository was archived by the owner on Nov 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.clj
More file actions
49 lines (35 loc) · 1.59 KB
/
project.clj
File metadata and controls
49 lines (35 loc) · 1.59 KB
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
41
42
43
44
45
46
47
48
49
(defproject fr.tedoldi/liPGN "1.0.0-SNAPSHOT"
:description "Generate PGN file from lichess.org"
:url "https://github.com/s-ted/liPGN"
:author "Sylvain Tedoldi"
:license {:name "Attribution-NonCommercial-ShareAlike 4.0 International"
:url "http://creativecommons.org/licenses/by-sa/4.0/"}
:dependencies [[org.clojure/clojure "1.9.0"]
[cheshire "5.8.0"]
[org.clojure/data.json "0.2.6"]
[de.ubercode.clostache/clostache "1.4.0"]
[org.clojure/tools.cli "0.3.5"]
[clojure-term-colors "0.1.0"]
[com.taoensso/timbre "4.10.0"]
[clj-http "3.8.0"]
[clj-time "0.14.2"]
[environ "1.0.2"]
[com.orientechnologies/orientdb-core "2.2.33"]
[com.orientechnologies/orientdb-server "2.2.33"]]
:plugins [[lein-environ "1.0.2"]]
:global-vars {*warn-on-reflection* false
*assert* false}
:source-paths ["src" "resources"]
:test-paths ["test" "test-resources"]
:main fr.tedoldi.lichess.game.retriever.main
:omit-source true
:uberjar-name "liPGN.jar"
:profiles {:dev
{:global-vars {*warn-on-reflection* false
*assert* true}
:dependencies [[midje "1.9.1"]]
:plugins [[lein-midje "3.2"]]
:injections [(use 'midje.repl)]
:env {:dev "true"}}
:uberjar
{:aot :all}})