Skip to content

Commit

Permalink
[#141] Added bb.edn + using clojure 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ieugen committed Jan 25, 2024
1 parent 0a30d0c commit 0ecbdbb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions bb.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{:min-bb-version "1.3.187"
:paths ["script"]
:tasks {test {:doc "Test all projects"
:task (do
(println "Install metrics-clojure-core in $HOME/.m2/repository")
(shell {:dir "metrics-clojure-core"} "lein install")
(doseq [proj ["core" "ganglia" "graphite" "health"
"influxdb" "jvm" "riemann" "ring"]]
(let [dir (str "metrics-clojure-" proj)]
(println "Testing project:" dir)
(shell {:dir dir} "lein test"))))}}}
4 changes: 2 additions & 2 deletions metrics-clojure-core/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:snapshots true
:releases {:checksum :fail :update :always}}}
:profiles {:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
:master {:dependencies [[org.clojure/clojure "1.10.0-master-SNAPSHOT"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}
:dev {:global-vars {*warn-on-reflection* true}}}
:aliases {"all" ["with-profile" "+dev:+1.8:+master"]}
:aliases {"all" ["with-profile" "+dev:+1.8:+1.10"]}
:global-vars {*warn-on-reflection* true})

0 comments on commit 0ecbdbb

Please sign in to comment.