Skip to content

Commit ef90f4e

Browse files
authored
Update the project.clj file (#655)
* Fix an issue with Clojure dependency leading to inability to run REPL or tests with accordance to CONTRIBUTING.md * Cover all latest Clojure versions in the deps matrix * Add a missing SLF4J bridge dependency (eternal classics) SLF4J: No SLF4J providers were found. SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details. * Do not mention supported Clojure versions explicitly
1 parent a9262a6 commit ef90f4e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

project.clj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
:distribution :repo}
77
:global-vars {*warn-on-reflection* false}
88
:min-lein-version "2.0.0"
9-
:exclusions [org.clojure/clojure]
109
:dependencies [[org.apache.httpcomponents/httpcore "4.4.16"]
1110
[org.apache.httpcomponents/httpclient "4.5.14"]
1211
[org.apache.httpcomponents/httpclient-cache "4.5.14"]
@@ -25,7 +24,7 @@
2524
[com.cognitect/transit-clj "1.0.333"]
2625
[ring/ring-codec "1.2.0"]
2726
;; other (testing) deps
28-
[org.clojure/clojure "1.11.2"]
27+
[org.clojure/clojure "1.12.1"]
2928
[org.clojure/tools.logging "1.3.0"]
3029
[ring/ring-jetty-adapter "1.12.1"]
3130
[ring/ring-devel "1.12.1"]
@@ -35,16 +34,18 @@
3534
;; logging
3635
[org.apache.logging.log4j/log4j-api "2.23.1"]
3736
[org.apache.logging.log4j/log4j-core "2.23.1"]
38-
[org.apache.logging.log4j/log4j-1.2-api "2.23.1"]]
37+
[org.apache.logging.log4j/log4j-1.2-api "2.23.1"]
38+
[org.apache.logging.log4j/log4j-slf4j2-impl "2.23.1"]]
3939
:plugins [[lein-ancient "0.7.0"]
4040
[jonase/eastwood "0.2.5"]
4141
[lein-kibit "0.1.5"]
4242
[lein-nvd "0.5.2"]]}
4343
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
4444
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
45-
:1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}}
46-
:aliases {"all" ["with-profile" "dev,1.8:dev,1.9:dev,1.10:dev"]}
45+
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
46+
:1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}}
47+
:aliases {"all" ["with-profile" "dev,1.8:dev,1.9:dev,1.10:dev,1.11:dev"]}
4748
:plugins [[codox "0.6.4"]]
48-
:test-selectors {:default #(not (:integration %))
49+
:test-selectors {:default #(not (:integration %))
4950
:integration :integration
5051
:all (constantly true)})

0 commit comments

Comments
 (0)