-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
40 lines (37 loc) · 1.87 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 org.fversnel/tzaar "0.1.2-SNAPSHOT"
:description "Clojure implementation of the abstract strategy game Tzaar by Kris Burm"
:url "https://github.com/fversnel/tzaar"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [;; Clojure
[org.clojure/clojure "1.9.0-alpha12"]
[org.clojure/core.async "0.2.385"]
[org.clojure/java.data "0.1.1"]
[cheshire "5.6.3"]
[camel-snake-kebab "0.4.0"]
[com.novemberain/langohr "3.6.1"]
; Web server stuff
[jarohen/chord "0.7.0" :exclusions [org.clojure/clojure
org.clojure/core.async
cheshire]]
[reagent "0.6.0"]
;; Clojurescript
[org.clojure/clojurescript "1.9.229"]]
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[com.taoensso/tufte "1.0.2"]]}}
:plugins [[lein-cljsbuild "1.1.4"]]
:source-paths ["src/shared" "src/clojure"]
:java-source-paths ["src/java"]
:aot [tzaar.javaapi tzaar.player tzaar.game tzaar.util.logging
tzaar.players.commandline tzaar.players.ai.provided
tzaar.util.timer]
:javac-options ["-target" "1.8" "-source" "1.8"]
:prep-tasks [["compile" "tzaar.player" "tzaar.util.logging"
"tzaar.players.ai.frank2" "tzaar.players.ai.provided"
"tzaar.players.commandline"]
"javac" "compile"]
:main tzaar.runner
:cljsbuild {:builds [{:source-paths ["src/shared" "src/clojurescript"]
:compiler {:output-to "resources/public/js/main.js"
:optimizations :none
:pretty-print true}}]})