-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
28 lines (25 loc) · 1.08 KB
/
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
24
25
26
27
28
(defproject kunstmusik/score "0.5.0-SNAPSHOT"
:description "A generic library for musical score generation"
:url "http://github.com/kunstmusik/score"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]]
:profiles {
:dev {
:global-vars {*warn-on-reflection* true}
:plugins [[lein-codox "0.10.3"]]
:source-paths ["src/demo"]
}
:profiling {
:plugins [[lein-nodisassemble "0.1.3"]]
:dependencies [[org.clojure/clojure "1.7.0"]]
:global-vars {*warn-on-reflection* true
*unchecked-math* :warn-on-boxed }}
}
:source-paths ["src/main"]
:test-paths ["src/test"]
:javac-options ["-target" "1.7" "-source" "1.7"]
:scm {:name "git"
:url "https://github.com/kunstmusik/score.git" }
:codox {:source-paths ["src/main"] }
)