Skip to content

Commit

Permalink
Bump nrepl & clojure-complete dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
trptcolin committed May 12, 2013
1 parent 0bfe4b8 commit b4660d5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions leiningen-core/src/leiningen/core/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@
:jvm-opts tiered-jvm-opts
:test-selectors {:default (with-meta '(constantly true)
{:displace true})}
:dependencies '[[org.clojure/tools.nrepl "0.2.2"]
[clojure-complete "0.2.2"]]
:dependencies '[[org.clojure/tools.nrepl "0.2.3"]
[clojure-complete "0.2.3"]]
:checkout-deps-shares [:source-paths
:test-paths
:resource-paths
Expand Down
4 changes: 2 additions & 2 deletions leiningen-core/test/leiningen/core/test/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
[lancet/lancet "1.0.1"]
[robert/hooke "1.1.2"]
[stencil/stencil "0.2.0"]
[org.clojure/tools.nrepl "0.2.2"]
[clojure-complete/clojure-complete "0.2.2"]],
[org.clojure/tools.nrepl "0.2.3"]
[clojure-complete/clojure-complete "0.2.3"]],
:twelve 12 ; testing unquote

:repositories [["central" {:url "http://repo1.maven.org/maven2/"
Expand Down
14 changes: 7 additions & 7 deletions test/leiningen/test/pom.clj
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
(is (= ["clojure" "rome" "ring" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))))

Expand All @@ -121,7 +121,7 @@
(is (= ["clojure" "rome" "ring" "peridot" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "test" "test" "test"]
Expand All @@ -141,7 +141,7 @@
(is (= ["clojure" "rome" "ring" "peridot" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "test" "test" "test"]
Expand All @@ -161,7 +161,7 @@
(is (= ["clojure" "rome" "ring" "peridot" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "provided" "test" "test"]
Expand Down Expand Up @@ -189,7 +189,7 @@
"tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "provided" "test" "test"]
Expand Down Expand Up @@ -230,7 +230,7 @@
(is (= ["clojure" "rome" "ring" "peridot" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.0.5" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "provided" "test" "test"]
Expand All @@ -257,7 +257,7 @@
(is (= ["clojure" "rome" "ring" "rome" "tools.nrepl" "clojure-complete"]
(map #(first-in % [:dependency :artifactId])
(deep-content xml [:project :dependencies]))))
(is (= ["1.3.0" "0.9" "1.0.0" "0.8" "0.2.2" "0.2.2"]
(is (= ["1.3.0" "0.9" "1.0.0" "0.8" "0.2.3" "0.2.3"]
(map #(first-in % [:dependency :version])
(deep-content xml [:project :dependencies]))))
(is (= [nil nil nil "test" "test" "test"]
Expand Down

0 comments on commit b4660d5

Please sign in to comment.