forked from mikera/core.matrix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
16 lines (16 loc) · 879 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject net.mikera/core.matrix "0.9.0"
:url "https://github.com/mikera/matrix-api"
:license {:name "Eclipse Public License (EPL)"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/main/clojure"]
:java-source-paths ["src/test/java"]
:test-paths ["src/test/clojure" "src/test/java"]
:dependencies [[org.clojure/clojure "1.4.0"]]
:profiles {:dev {:dependencies [[com.google.caliper/caliper "0.5-rc1"]
[net.mikera/cljunit "0.2.0"]
[criterium/criterium "0.4.1"]
[hiccup "1.0.3"]
[net.mikera/vectorz-clj "0.13.2"]
[reiddraper/simple-check "0.2.1"]]
:source-paths ["src/main/clojure" "src/dev/clojure"]
:jvm-opts ^:replace []}})