forked from macourtney/Dark-Exchange
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
executable file
·23 lines (20 loc) · 966 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
(defproject darkexchange "1.2.0-SNAPSHOT"
:description "Dark Exchange is a distributed p2p exchange for bitcoin."
:dependencies [[clojure-tools "1.0.0"]
[com.h2database/h2 "1.3.157"]
[commons-codec/commons-codec "1.5"]
[drift "1.2.1"]
[log4j/log4j "1.2.16"]
[org.clojars.macourtney/clj-record "1.0.1"]
[org.clojars.macourtney/i2p "0.8.7-0"]
[org.clojars.macourtney/mstreaming "0.8.7-0"]
[org.clojars.macourtney/streaming "0.8.7-0"]
[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[seesaw "1.0.10"]]
:dev-dependencies [[drift "1.2.1"]
[lein-tar "1.0.6"]]
:main darkexchange.main
:resources-path "pkg/resources"
:run-aliases { :development darkexchange.development-main
:dev darkexchange.development-main} )