-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathproject.clj
18 lines (18 loc) · 1.23 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject org.flatland/ordered (or (System/getenv "PROJECT_VERSION") "1.5.10")
:url "https://github.com/clj-commons/ordered"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:description "Pure-clojure implementation of ruby's ordered hash and set types - instead of sorting by key, these collections retain insertion order."
:dependencies [[org.clojure/clojure "1.10.1"]]
:aliases {"testall" ["with-profile" "+1.8:+1.9:+1.10.0:+1.10.1" "test"]
"depsall" ["with-profile" "+1.8:+1.9:+1.10.0:+1.10.1" "deps"]}
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_ordered_password
:sign-releases true}]]
:profiles {:1.10.1 {:dependencies [[org.clojure/clojure "1.10.1"]]}
:1.10.0 {:dependencies [[org.clojure/clojure "1.10.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
;; Not required except for benchmarks.
:dev {:dependencies [[ordered-collections "0.4.2"]]} })