-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
30 lines (29 loc) · 1.38 KB
/
Copy pathproject.clj
File metadata and controls
30 lines (29 loc) · 1.38 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
(defproject artifact "0.1.0-SNAPSHOT"
:description "The server side of the game Artifact, an archaeology-themed board
game. To run it, fire up the server and connect to it with a
browser."
:dependencies [[org.clojure/clojure "1.4.0"]
[ring/ring-jetty-adapter "1.0.1"]
[ring/ring-core "1.0.1"]
;; TODO: Do I need this and the other Ring libraries?
[ring "1.0.1"]
[org.clojure/data.json "0.1.1"]
[compojure "1.0.0"]
[enlive "1.0.0"]
[org.clojure/clojurescript "0.0-927"]
[com.datomic/datomic "0.1.3065"]
;; This next one is needed to prevent problems with
;; lein-swank. See
;; https://github.com/technomancy/swank-clojure
[clj-stacktrace "0.2.4"]]
:plugins [[marginalia "0.7.0"]
[lein-marginalia "0.7.0"]]
:git-dependencies [["https://github.com/brentonashworth/one.git"
"M002"]
["https://github.com/levand/domina.git"
"c0eb06f677e0f9f72537682e3c702dd27b03e2e4"]]
:main artifact.core
:extra-classpath-dirs [".lein-git-deps/domina/src/cljs"
".lein-git-deps/one/src/lib/clj"
".lein-git-deps/one/src/lib/cljs"
"templates"])