-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathproject.clj
24 lines (24 loc) · 1021 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
(defproject bltool "0.2.4"
:description "Simple tools for managing a Backloggery game collection"
:url "https://github.com/toxicfrog/backloggery"
:license {:name "Apache License v2"
:url "http://opensource.org/licenses/Apache-2.0"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.typed "0.2.5"]
[org.clojure/data.xml "0.0.7"]
[org.clojure/data.json "0.2.6"]
[org.clojure/tools.cli "0.2.4"]
[clj-http "0.7.6"]
[slingshot "0.10.3"]
[crouton "0.1.1"]]
:core.typed {:check [bltool.core
bltool.flags
bltool.data
bltool.data.default
bltool.data.steam
bltool.data.backloggery
bltool.data.edn
bltool.data.text
bltool.data.xboxlive]}
:profiles {:uberjar {:aot :all}}
:main bltool.core)