|
1 |
| -(defproject io.factorhouse/slipway-jetty11 "1.1.13" |
| 1 | +(defproject io.factorhouse/slipway-jetty11 "1.1.14" |
2 | 2 |
|
3 | 3 | :description "A Clojure Companion for Jetty"
|
4 | 4 |
|
|
7 | 7 | :license {:name "MIT License"
|
8 | 8 | :url "https://github.com/factorhouse/slipway/blob/main/LICENSE"}
|
9 | 9 |
|
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 |
| 10 | + :profiles {:dev {:dependencies [[com.fasterxml.jackson.core/jackson-core "2.16.2"] ;; required for internal inconsistency within clj-kondo, kept at latest for CVE avoidance |
11 | 11 | [clj-kondo "2023.12.15"]
|
12 |
| - [clj-http "3.12.3" :exclusions [commons-io commons-codec]] |
13 |
| - [ch.qos.logback/logback-classic "1.3.14"] |
14 |
| - [ring/ring-anti-forgery "1.3.0" :exclusions [crypto-random crypto-equality]] |
15 |
| - [metosin/reitit-ring "0.6.0"]] |
| 12 | + [clj-http "3.13.0"] |
| 13 | + [ch.qos.logback/logback-classic "1.3.14"] ;; Logback 1.3.x supports the Java EE edition whereas logback 1.4.x supports Jakarta EE, otherwise the two versions are feature identical. The 1.5.x continues the 1.4.x series but with logback-access relocated to its own repository. |
| 14 | + [ring/ring-anti-forgery "1.3.1"] |
| 15 | + [metosin/reitit-ring "0.7.0" :exclusions [ring/ring-core]]] |
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" "common/src:common-jetty1x/src:test:common/test" "--parallel"]
|
22 | 22 | "fmt" ["with-profile" "+smoke" "cljfmt" "check"]}
|
23 | 23 |
|
24 |
| - :dependencies [[org.clojure/clojure "1.11.2"] |
| 24 | + :dependencies [[org.clojure/clojure "1.11.3"] |
25 | 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.websocket/websocket-jetty-api "11.0.20"] |
29 |
| - [org.eclipse.jetty.websocket/websocket-jetty-server "11.0.20" :exclusions [org.slf4j/slf4j-api]] |
30 |
| - [org.eclipse.jetty.websocket/websocket-servlet "11.0.20" :exclusions [org.slf4j/slf4j-api]] |
31 |
| - [org.eclipse.jetty/jetty-server "11.0.20" :exclusions [org.slf4j/slf4j-api]] |
32 |
| - [org.eclipse.jetty/jetty-jaas "11.0.20" :exclusions [org.slf4j/slf4j-api]] |
33 |
| - [org.slf4j/slf4j-api "2.0.12"]] |
| 28 | + [org.eclipse.jetty.websocket/websocket-jetty-api "11.0.21"] |
| 29 | + [org.eclipse.jetty.websocket/websocket-jetty-server "11.0.21" :exclusions [org.slf4j/slf4j-api]] |
| 30 | + [org.eclipse.jetty.websocket/websocket-servlet "11.0.21" :exclusions [org.slf4j/slf4j-api]] |
| 31 | + [org.eclipse.jetty/jetty-server "11.0.21" :exclusions [org.slf4j/slf4j-api]] |
| 32 | + [org.eclipse.jetty/jetty-jaas "11.0.21" :exclusions [org.slf4j/slf4j-api]] |
| 33 | + [org.slf4j/slf4j-api "2.0.13"]] |
34 | 34 |
|
35 | 35 | :source-paths ["common/src" "common-jetty1x/src" "common-jakarta/src"]
|
36 | 36 | :test-paths ["test" "common/test"])
|
0 commit comments