-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (16 loc) · 797 Bytes
/
project.clj
File metadata and controls
20 lines (16 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject clojure.options "0.2.10"
:description "Advanced support for optional arguments in functions declared with defn-like syntax."
:url "http://github.com/guv/clojure.options/"
:license {:name "Eclipse Public License", :url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]]
:profiles
{:dev {:dependencies [[midje "1.5.1"]]}
:1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}}
:aliases {"all" ["with-profile" "dev,1.2:dev,1.3:dev"]
"cleanbuild" ["do" "clean," "compile" ":all"]}
:autodoc {:copyright "Copyright 2011-2015 by Gunnar Völkel"}
:test-paths ["test"]
)