Skip to content

Commit

Permalink
add basic project.clj
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenet committed Aug 28, 2019
1 parent cebb4f4 commit 4c1f5ac
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions project.clj
@@ -0,0 +1,22 @@
(require '[clojure.edn :as edn])

(defonce tools-deps (delay (edn/read-string (slurp "deps.edn"))))

(defn deps
[]
(some->> @tools-deps
:deps
(map (fn [[coord {:keys [mvn/version exclusions]}]]
[coord version :exclusions exclusions]))))

(defn repositories []
(:mvn/repos @tools-deps))

(defproject cc.qbits/auspex "0.1.0-alpha2"
:description "Mini wrapper over java-11 CompletableFuture with a manifold deferred after-taste"
:url "https://github.com/mpenet/auspex"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies ~(deps)
:source-paths ["src"]
:global-vars {*warn-on-reflection* true})

0 comments on commit 4c1f5ac

Please sign in to comment.