Skip to content

Commit

Permalink
Merge pull request #10 from missingfaktor/master
Browse files Browse the repository at this point in the history
Upgrade to Clojure 1.9.0
  • Loading branch information
jclaggett committed Apr 12, 2018
2 parents 252aea6 + d2c1c9d commit ccf418c
Showing 1 changed file with 24 additions and 22 deletions.
46 changes: 24 additions & 22 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
(defproject n01se/seqex "2.0.2-SNAPSHOT"
:description "Sequence Expressions."
:url "http://github.com/jclaggett/seqex"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:min-lein-version "2.0.0"
:description "Sequence Expressions."
:url "http://github.com/jclaggett/seqex"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:min-lein-version "2.0.0"

:dependencies [[criterium "0.3.1"]
[org.clojure/clojure "1.7.0"]
[org.clojure/tools.nrepl "0.2.3"]
[clojure-complete "0.2.3"]]
:dependencies [[criterium "0.3.1"]
[org.clojure/clojure "1.9.0"]
[org.clojure/tools.nrepl "0.2.3"]
[clojure-complete "0.2.3"]]


;; Describe a performance specific test profile
:test-selectors {:default (complement :perf), :perf :perf}
;; Describe a performance specific test profile
:test-selectors {:default (complement :perf), :perf :perf}

:profiles {:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}}
:aliases {"1.7" ["with-profile" "1.7"]
"1.6" ["with-profile" "1.6"]
"1.5" ["with-profile" "1.5"]}
;; Use this to allow YourKit to connect:
;; :jvm-opts ["-agentpath:yjp/libyjpagent.so"]
)
:profiles {: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"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}}
:aliases {"1.8" ["with-profile" "1.8"]
"1.7" ["with-profile" "1.7"]
"1.6" ["with-profile" "1.6"]
"1.5" ["with-profile" "1.5"]}
;; Use this to allow YourKit to connect:
;; :jvm-opts ["-agentpath:yjp/libyjpagent.so"]
)

0 comments on commit ccf418c

Please sign in to comment.