|
1 |
| -(defproject io.factorhouse/slipway-jetty9 "1.1.12" |
| 1 | +(defproject io.factorhouse/slipway-jetty9 "1.1.13" |
2 | 2 |
|
3 | 3 | :description "A Clojure Companion for Jetty"
|
4 | 4 |
|
|
8 | 8 | :url "https://github.com/factorhosue/slipway/blob/main/LICENSE"}
|
9 | 9 |
|
10 | 10 | :profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.1"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance
|
11 |
| - [clj-kondo "2023.12.15"] |
12 |
| - [clj-http "3.12.3" :exclusions [commons-io]] |
13 |
| - [ch.qos.logback/logback-classic "1.3.14"] |
| 11 | + [clj-kondo "2023.12.15"] ;; https://github.com/clj-kondo/clj-kondo/issues/2277 leave at this version until we move to Clojure 1.12.x and can fix |
| 12 | + [clj-http "3.12.3" :exclusions [commons-io commons-codec]] |
| 13 | + [ch.qos.logback/logback-classic "1.3.14"] ;; 1.3 branch is for Java EE / Java 8 so we will keep aligned here. |
14 | 14 | [ring/ring-anti-forgery "1.3.0" :exclusions [crypto-random crypto-equality]]
|
15 | 15 | [metosin/reitit-ring "0.6.0"]]
|
16 | 16 | :resource-paths ["dev-resources" "common/dev-resources"]
|
17 |
| - :plugins [[lein-cljfmt "0.8.2"]]} |
| 17 | + :plugins [[lein-cljfmt "0.9.2"]]} |
18 | 18 | :smoke {:pedantic? :abort}}
|
19 | 19 |
|
20 | 20 | :aliases {"check" ["with-profile" "+smoke" "check"]
|
21 | 21 | "kondo" ["with-profile" "+smoke" "run" "-m" "clj-kondo.main" "--lint" "src:common/src:test:common/test" "--parallel"]
|
22 | 22 | "fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
|
23 | 23 |
|
24 | 24 | :dependencies [[org.clojure/clojure "1.11.1"]
|
25 |
| - [org.clojure/tools.logging "1.2.4"] |
| 25 | + [org.clojure/tools.logging "1.3.0"] |
26 | 26 | [ring/ring-servlet "1.9.6"]
|
27 | 27 | [com.taoensso/sente "1.17.0"]
|
28 |
| - [org.eclipse.jetty/jetty-server "9.4.53.v20231009"] |
29 |
| - [org.eclipse.jetty.websocket/websocket-server "9.4.53.v20231009"] |
30 |
| - [org.eclipse.jetty.websocket/websocket-servlet "9.4.53.v20231009"] |
31 |
| - [org.eclipse.jetty/jetty-jaas "9.4.53.v20231009"] |
32 |
| - [org.slf4j/slf4j-api "2.0.11"]] |
| 28 | + [org.eclipse.jetty/jetty-server "9.4.54.v20240208"] |
| 29 | + [org.eclipse.jetty.websocket/websocket-server "9.4.54.v20240208"] |
| 30 | + [org.eclipse.jetty.websocket/websocket-servlet "9.4.54.v20240208"] |
| 31 | + [org.eclipse.jetty/jetty-jaas "9.4.54.v20240208"] |
| 32 | + [org.slf4j/slf4j-api "2.0.12"]] |
33 | 33 |
|
34 | 34 | :source-paths ["src" "common/src" "common-javax/src"]
|
35 | 35 | :test-paths ["test" "common/test"]
|
|
0 commit comments