-
Notifications
You must be signed in to change notification settings - Fork 57
/
project.clj
20 lines (20 loc) · 1.04 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject org.flatland/useful "0.11.7-SNAPSHOT"
:description "A collection of generally-useful Clojure utility functions"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:url "https://github.com/amalloy/useful"
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.macro "0.1.1"]
[org.clojure/tools.reader "0.7.2"]]
:aliases {"testall" ["with-profile" "1.6:1.7:1.8:1.9:1.10" "test"]}
:profiles {:1.10 {:dependencies [[org.clojure/clojure "1.10.0-RC3"]]}
:1.9 {}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:plugins [[codox "0.8.0"]]
:codox {:src-dir-uri "http://github.com/flatland/useful/blob/develop/"
:src-linenum-anchor-prefix "L"})