|
28 | 28 |
|
29 | 29 | :filespecs [{:type :bytes :path "cider/cider-nrepl/project.clj" :bytes ~(slurp "project.clj")}]
|
30 | 30 |
|
31 |
| - :test-paths ["test/common"] ;; See `test-clj` and `test-cljs` profiles below. |
| 31 | + :source-paths ["src"] |
| 32 | + :resource-paths ["resources"] |
| 33 | + :test-paths ["test/clj" "test/cljs" "test/common"] |
32 | 34 |
|
33 | 35 | :test-selectors {:default (fn [test-meta]
|
34 | 36 | (let [parse-version (fn [v] (mapv #(Integer/parseInt (re-find #"\d+" %)) (clojure.string/split v #"\.")))
|
|
57 | 59 |
|
58 | 60 | :profiles {:provided {:dependencies [[org.clojure/clojure "1.8.0"]]}
|
59 | 61 |
|
60 |
| - :dev {:dependencies [;; For developing the Leiningen plugin. |
61 |
| - [leiningen-core "2.8.3"] |
62 |
| - ;; For the boot tasks namespace |
63 |
| - [boot/base "2.8.2"] |
64 |
| - [boot/core "2.8.2"]]} |
| 62 | + :dev {:dependencies [[boot/base "2.8.2"] |
| 63 | + [boot/core "2.8.2"] |
| 64 | + [leiningen-core "2.8.3"]]} |
65 | 65 |
|
66 | 66 | :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]
|
67 |
| - [org.clojure/clojurescript "1.8.51" :scope "provided"]]} |
| 67 | + [org.clojure/clojurescript "1.8.51" :scope "provided"] |
| 68 | + [javax.xml.bind/jaxb-api "2.3.1" :scope "provided"]]} |
68 | 69 | :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]
|
69 |
| - [org.clojure/clojurescript "1.9.946" :scope "provided"]] |
| 70 | + [org.clojure/clojurescript "1.9.946" :scope "provided"] |
| 71 | + [javax.xml.bind/jaxb-api "2.3.1" :scope "provided"]] |
70 | 72 | :test-paths ["test/spec"]}
|
71 | 73 | :1.10 {:dependencies [[org.clojure/clojure "1.10.0"]
|
72 | 74 | [org.clojure/clojurescript "1.10.63" :scope "provided"]]
|
|
75 | 77 | :dependencies [[org.clojure/clojure "1.11.0-master-SNAPSHOT"]
|
76 | 78 | [org.clojure/clojurescript "1.10.439" :scope "provided"]]}
|
77 | 79 |
|
78 |
| - :test-clj {:source-paths ["test/src"] |
79 |
| - :java-source-paths ["test/java"] |
80 |
| - :resource-paths ["test/resources"] |
81 |
| - :test-paths ["test/clj"]} |
82 |
| - :test-cljs {:test-paths ["test/cljs"] |
83 |
| - :dependencies [[cider/piggieback "0.3.10"] |
84 |
| - [javax.xml.bind/jaxb-api "2.3.1"]]} |
| 80 | + :test {:source-paths ["test/src"] |
| 81 | + :java-source-paths ["test/java"] |
| 82 | + :resource-paths ["test/resources"] |
| 83 | + :dependencies [[cider/piggieback "0.3.10"]]} |
85 | 84 |
|
86 | 85 | :repl {:repl-options {:nrepl-middleware [cider.nrepl/wrap-apropos
|
87 | 86 | cider.nrepl/wrap-classpath
|
|
0 commit comments