forked from mikera/core.matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
24 lines (23 loc) · 1.26 KB
/
project.clj
File metadata and controls
24 lines (23 loc) · 1.26 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
;; This project.clj is provided as a convenience for Leiningen users
;;
;; The official core.matrix project configuration is in the pom.xml
;; dependencies / configuration in this file may be out of date
;; if in doubt, please refer to the latest pom.xml
(defproject net.mikera/core.matrix "0.24.1-SNAPSHOT"
: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.6.0"]]
:marginalia {:javascript ["http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"]}
:profiles {:dev {:dependencies [[net.mikera/cljunit "0.3.0"]
[com.google.caliper/caliper "0.5-rc1"]
[criterium/criterium "0.4.3"]
[org.clojure/tools.macro "0.1.5"]
[hiccup "1.0.5"]
[net.mikera/vectorz-clj "0.22.0"]
[org.clojure/test.check "0.5.7"]]
:source-paths ["src/main/clojure" "src/dev/clojure"]
:jvm-opts ^:replace []}})