|
6 | 6 | :url "https://github.com/clojure-emacs/refactor-nrepl" |
7 | 7 | :license {:name "Eclipse Public License" |
8 | 8 | :url "https://www.eclipse.org/legal/epl-v10.html"} |
9 | | - :dependencies [[nrepl "0.9.0"] |
10 | | - ^:inline-dep [compliment "0.3.12"] |
11 | | - ^:inline-dep [http-kit "2.5.3"] |
12 | | - ^:inline-dep [org.clojure/data.json "2.3.1"] |
13 | | - ^:inline-dep [org.clojure/tools.analyzer.jvm "1.2.2"] |
| 9 | + :dependencies [[nrepl "1.0.0"] |
| 10 | + ^:inline-dep [compliment "0.4.0"] |
| 11 | + ^:inline-dep [http-kit "2.5.0"] |
| 12 | + ^:inline-dep [org.clojure/data.json "2.4.0"] |
| 13 | + ^:inline-dep [org.clojure/tools.analyzer.jvm "1.2.3"] |
14 | 14 | ^:inline-dep [org.clojure/tools.namespace "1.1.0" :exclusions [org.clojure/tools.reader]] |
15 | 15 | ^:inline-dep [org.clojure/tools.reader "1.3.6"] |
16 | | - ^:inline-dep [cider/orchard "0.9.1"] |
17 | | - ^:inline-dep [cljfmt "0.8.0" :exclusions [rewrite-clj rewrite-cljs]] |
| 16 | + ^:inline-dep [cider/orchard "0.12.0"] |
| 17 | + ^:inline-dep [cljfmt "0.9.2" :exclusions [rewrite-clj rewrite-cljs]] |
18 | 18 | ^:inline-dep [clj-commons/fs "1.6.310"] |
19 | | - ^:inline-dep [rewrite-clj "1.0.699-alpha"] |
| 19 | + ^:inline-dep [rewrite-clj "1.1.47"] |
20 | 20 | ^:inline-dep [version-clj "1.0.0"]] |
21 | 21 | :exclusions [org.clojure/clojure] ; see versions matrix below |
22 | 22 |
|
|
34 | 34 | :unresolved-tree false} |
35 | 35 | :filespecs [{:type :bytes :path "refactor-nrepl/refactor-nrepl/project.clj" :bytes ~(slurp "project.clj")}] |
36 | 36 | :profiles {;; Clojure versions matrix |
37 | | - :provided {:dependencies [[cider/cider-nrepl "0.28.3"] |
38 | | - [org.clojure/clojure "1.10.3"] |
| 37 | + :provided {:dependencies [[cider/cider-nrepl "0.31.0"] |
| 38 | + [org.clojure/clojure "1.11.1"] |
39 | 39 | ;; For satisfying `:pedantic?`: |
40 | 40 | [com.google.code.findbugs/jsr305 "3.0.2"] |
41 | | - [com.google.errorprone/error_prone_annotations "2.1.3"]]} |
42 | | - :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} |
43 | | - :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} |
| 41 | + [com.google.errorprone/error_prone_annotations "2.20.0"]]} |
44 | 42 | :1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]} |
| 43 | + :1.11 {:dependencies [[org.clojure/clojure "1.11.1"]]} |
45 | 44 |
|
46 | 45 | :master {:repositories [["snapshots" |
47 | 46 | "https://oss.sonatype.org/content/repositories/snapshots"]] |
48 | | - :dependencies [[org.clojure/clojure "1.11.0-master-SNAPSHOT"] |
49 | | - [org.clojure/clojure "1.11.0-master-SNAPSHOT" :classifier "sources"]]} |
| 47 | + :dependencies [[org.clojure/clojure "1.12.0-master-SNAPSHOT"] |
| 48 | + [org.clojure/clojure "1.12.0-master-SNAPSHOT" :classifier "sources"]]} |
50 | 49 |
|
51 | 50 | :test {:dependencies [[print-foo "1.0.2"]]} |
52 | | - :dev {:dependencies [[org.clojure/clojurescript "1.10.879"] |
53 | | - [org.clojure/core.async "1.3.618" :exclusions [org.clojure/clojure org.clojure/tools.reader]] |
54 | | - [cider/piggieback "0.5.2"] |
55 | | - [commons-io/commons-io "2.8.0"]] |
| 51 | + :dev {:dependencies [[org.clojure/clojurescript "1.11.60"] |
| 52 | + [org.clojure/core.async "1.6.673" :exclusions [org.clojure/clojure org.clojure/tools.reader]] |
| 53 | + [cider/piggieback "0.5.3"] |
| 54 | + [commons-io/commons-io "2.13.0"]] |
56 | 55 | :repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]} |
57 | 56 | :jvm-opts ["-Dorchard.use-dynapath=false"] |
58 | 57 | :java-source-paths ["java-test"] |
59 | 58 | :resource-paths ["test-resources" |
60 | 59 | "testproject/src"] |
61 | 60 | :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots"]]} |
62 | 61 | :cljfmt [:test |
63 | | - {:plugins [[lein-cljfmt "0.8.0" :exclusions [org.clojure/clojure |
| 62 | + {:plugins [[lein-cljfmt "0.9.2" :exclusions [org.clojure/clojure |
64 | 63 | org.clojure/clojurescript]]] |
65 | 64 | :cljfmt {:indents {as-> [[:inner 0]] |
66 | 65 | as->* [[:inner 0]] |
|
69 | 68 | with-debug-bindings [[:inner 0]] |
70 | 69 | merge-meta [[:inner 0]] |
71 | 70 | try-if-let [[:block 1]]}}}] |
72 | | - :eastwood {:plugins [[jonase/eastwood "1.2.3"]] |
| 71 | + :eastwood {:plugins [[jonase/eastwood "1.4.0"]] |
73 | 72 | :eastwood {;; :implicit-dependencies would fail spuriously when the CI matrix runs for Clojure < 1.10, |
74 | 73 | ;; because :implicit-dependencies can only work for a certain corner case starting from 1.10. |
75 | 74 | :exclude-linters [:implicit-dependencies] |
|
0 commit comments