Skip to content

Commit 4879231

Browse files
committed
CMR-11117: trying a new library
1 parent 6858dfa commit 4879231

File tree

22 files changed

+81
-77
lines changed

22 files changed

+81
-77
lines changed

access-control-app/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
[org.eclipse.jetty/jetty-http]
4444
[org.eclipse.jetty/jetty-util]
4545
[ring/ring-core]
46-
[ring/ring-jetty-adapter]
46+
[info.sunng/ring-jetty9-adapter]
4747
[ring/ring-codec "1.3.0"]
4848
[ring/ring-json "0.5.1"]]
4949
project-dependencies)
@@ -65,7 +65,7 @@
6565
[pjstadig/humane-test-output "0.9.0"]
6666
[proto-repl "0.3.1"]
6767
[ring/ring-codec "1.3.0"]
68-
[ring/ring-jetty-adapter]
68+
[info.sunng/ring-jetty9-adapter]
6969
[ring-mock "0.1.5"]]
7070
:jvm-opts ^:replace ["-server"]
7171
:source-paths ["src" "dev" "test" "int-test"]

acl-lib/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
[lambdaisland/kaocha-cloverage "1.0.75"]
3838
[lambdaisland/kaocha-junit-xml "0.0.76"]
3939
;; ring is needed or this fails in sys int group3
40-
[ring/ring-jetty-adapter]]}}
40+
[info.sunng/ring-jetty9-adapter]]}}
4141
:aliases {;; Kaocha test aliases
4242
;; refer to tests.edn for test configuration
4343
"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]

bootstrap-app/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
[org.eclipse.jetty/jetty-http]
2929
[org.eclipse.jetty/jetty-util]
3030
[ring/ring-core]
31-
[ring/ring-jetty-adapter]
31+
[info.sunng/ring-jetty9-adapter]
3232
[ring/ring-codec "1.3.0"]
3333
[ring/ring-json "0.5.1"]]
3434
:plugins [[io.github.jaybarra/drift "1.5.4.2-SNAPSHOT" :exclusions [clojure-tools]]
@@ -43,7 +43,7 @@
4343
:suppression-file "resources/security/suppression.xml"}}
4444
:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]
4545
[org.clojars.gjahad/debug-repl "0.3.3"]
46-
[ring/ring-jetty-adapter]]
46+
[info.sunng/ring-jetty9-adapter]]
4747
:jvm-opts ^:replace ["-server"]
4848
:source-paths ["src" "dev" "test"]}
4949
:uberjar {:main cmr.bootstrap.runner

common-app-lib/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
[com.vladsch.flexmark/flexmark-all "0.64.0"]
1818
[org.eclipse.jetty/jetty-util]
1919
[ring/ring-core ]
20-
[ring/ring-jetty-adapter]
20+
[info.sunng/ring-jetty9-adapter]
2121
[ring/ring-json "0.5.1"]
2222
[selmer "1.12.5"]]
2323
:plugins [[lein-parent "0.3.9"]
@@ -30,7 +30,7 @@
3030
:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]
3131
[org.clojure/tools.nrepl "0.2.13"]
3232
[ring/ring-codec "1.3.0"]
33-
[ring/ring-jetty-adapter]
33+
[info.sunng/ring-jetty9-adapter]
3434
[ring/ring-core]
3535
[org.clojars.gjahad/debug-repl "0.3.3"]]
3636
:jvm-opts ^:replace ["-server"]

common-lib/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
[org.ow2.asm/asm "7.0"]
5656
[potemkin "0.4.5"]
5757
[ring/ring-core]
58-
[ring/ring-jetty-adapter]
58+
[info.sunng/ring-jetty9-adapter]
5959
[ring/ring-json "0.5.1"]]
6060
:repositories [["jitpack.io" "https://jitpack.io"]]
6161
:plugins [[lein-exec "0.3.7"]
@@ -74,7 +74,7 @@
7474
[criterium "0.4.4"]
7575
[proto-repl "0.3.1"]
7676
[ring/ring-core]
77-
[ring/ring-jetty-adapter]
77+
[info.sunng/ring-jetty9-adapter]
7878
[clj-http]]
7979
:jvm-opts ^:replace ["-server"]
8080
;; XXX Note that profiling can be kept in a profile,

common-lib/src/cmr/common/api/web_server.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[cmr.common.lifecycle :as lifecycle]
77
[cmr.common.log :refer [info error]]
88
[cmr.common.mime-types :as mt]
9-
[ring.adapter.jetty :as jetty])
9+
[ring.adapter.jetty9 :as jetty])
1010
(:import
1111
(java.io ByteArrayInputStream InputStream)
1212
(org.eclipse.jetty.server Server CustomRequestLog Connector HttpConnectionFactory)

dev-system/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
:dependencies ~(concat '[[commons-codec/commons-codec "1.11"]
5454
[org.clojure/clojure "1.11.2"]
5555
[ring/ring-codec "1.3.0"]
56-
[ring/ring-jetty-adapter]]
56+
[info.sunng/ring-jetty9-adapter]]
5757
project-dependencies)
5858
:plugins [[lein-environ "1.1.0"]
5959
[lein-parent "0.3.9"]

elastic-utils-lib/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
[lambdaisland/kaocha-cloverage "1.0.75"]
6767
[lambdaisland/kaocha-junit-xml "0.0.76"]
6868
;; ring is needed or this fails in sys int group3
69-
[ring/ring-jetty-adapter]]}}
69+
[info.sunng/ring-jetty9-adapter]]}}
7070
:aliases {;; Kaocha test aliases
7171
;; refer to tests.edn for test configuration
7272
"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]

indexer-app/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
[org.eclipse.jetty/jetty-util]
2222
[ring/ring-codec "1.3.0"]
2323
[ring/ring-core]
24-
[ring/ring-jetty-adapter]
24+
[info.sunng/ring-jetty9-adapter]
2525
[ring/ring-json "0.5.1"]]
2626
:plugins [[lein-parent "0.3.9"]
2727
[lein-shell "0.5.0"]]
@@ -34,7 +34,7 @@
3434
:suppression-file "resources/security/suppression.xml"}}
3535
:dev {:dependencies [[org.clojars.gjahad/debug-repl "0.3.3"]
3636
[org.clojure/tools.namespace "0.2.11"]
37-
[ring/ring-jetty-adapter]]
37+
[info.sunng/ring-jetty9-adapter]]
3838
:jvm-opts ^:replace ["-server"]
3939
:source-paths ["src" "dev" "test"]}
4040
:uberjar {:main cmr.indexer.runner

ingest-app/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
[org.eclipse.jetty/jetty-util]
4747
[ring/ring-codec "1.3.0"]
4848
[ring/ring-core]
49-
[ring/ring-jetty-adapter]
49+
[info.sunng/ring-jetty9-adapter]
5050
[ring/ring-json "0.5.1"]]
5151
:plugins [[io.github.jaybarra/drift "1.5.4.2-SNAPSHOT" :exclusions [clojure-tools]]
5252
[lein-exec "0.3.7"]
@@ -59,7 +59,7 @@
5959
:suppression-file "resources/security/suppression.xml"}}
6060
:dev {:dependencies [[org.clojars.gjahad/debug-repl "0.3.3"]
6161
[org.clojure/tools.namespace "0.2.11"]
62-
[ring/ring-jetty-adapter]
62+
[info.sunng/ring-jetty9-adapter]
6363
[ring-mock "0.1.5"]]
6464
:jvm-opts ^:replace ["-server"]
6565
:source-paths ["src" "dev" "test"]}

0 commit comments

Comments
 (0)