-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 953 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject twotree.longest-path "0.1.2"
:description "Library for computing longest paths in 2-trees in O(n) time"
:url "https://github.com/Biserkov/twotree-longest-path"
:scm {:name "git" :url "https://github.com/Biserkov/twotree-longest-path"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/data.int-map "0.2.4"]]
:deploy-repositories [["releases" {:sign-releases false :url "https://clojars.org/repo"}]
["snapshots" {:sign-releases false :url "https://clojars.org/repo"}]]
:profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]
[com.gfredericks/test.chuck "0.2.6"]]}
:uberjar {:aot :all}}
:test-selectors {:default (fn [m] (:functional m))
:all (fn [m] true)}
:aliases {"test-all" ["test" ":all"]})