-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
20 lines (20 loc) · 1.06 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject game-theory "0.1.0-SNAPSHOT"
:description "Game theory in Clojure"
:url "http://books.google.com/books/about/A_Course_in_Game_Theory.html?id=5ntdaYX4LPkC"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:resources-path "resources"
:source-paths ["src/clj"]
:repositories {"conjars" "http://conjars.org/repo/"}
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/math.numeric-tower "0.0.1"]
[incanter/incanter-core "1.3.0-SNAPSHOT"]
[incanter/incanter-io "1.3.0-SNAPSHOT"]
[incanter/incanter-charts "1.3.0-SNAPSHOT"]
[lein-swank "1.4.4"]
[org.clojure/clojure-contrib "1.2.0"]]
:profiles {:dev {:dependencies [[org.apache.hadoop/hadoop-core "0.20.2-dev"]
[midje-cascalog "0.4.0"]
[incanter/incanter-charts "1.3.0"]]
:plugins [[lein-swank "1.4.4"]
[lein-midje "2.0.0-SNAPSHOT"]]}})