Skip to content

Commit

Permalink
Bump ring version and add javax.servlet/servlet-api (#260)
Browse files Browse the repository at this point in the history
* Bump ring version and add javax.servlet/servlet-api

* Bump info.sunng/ring-jetty9-adapter

* Bump examples_test workflow to java 17

* Add clj-http to tests dependencies

* Bump test workflow to java 17
  • Loading branch information
gmsvalente committed Oct 31, 2023
1 parent 7122d5c commit 776663a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@9.4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '11'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@9.4
Expand Down
5 changes: 3 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
com.taoensso/timbre {:mvn/version "5.2.1"},
crypto-password/crypto-password {:mvn/version "0.3.0"},
funcool/cuerdas {:mvn/version "2.2.1"},
info.sunng/ring-jetty9-adapter {:mvn/version "0.17.5"},
info.sunng/ring-jetty9-adapter {:mvn/version "0.30.1"},
metosin/malli {:mvn/version "0.8.4"},
metosin/reitit {:mvn/version "0.5.18"},
;; migratus/migratus {:mvn/version "1.3.7"},
Expand All @@ -27,7 +27,8 @@
hikari-cp/hikari-cp {:mvn/version "3.0.1"}
org.slf4j/slf4j-simple {:mvn/version "2.0.7"}
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}
ring/ring {:mvn/version "1.9.6"}
ring/ring {:mvn/version "1.10.0"}
javax.servlet/servlet-api {:mvn/version "2.5"}
hiccup/hiccup {:mvn/version "1.0.5"}}

:aliases
Expand Down
3 changes: 2 additions & 1 deletion examples/frames/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
:local {:resource-paths ["config/local" "resources"]}
:prod {:resource-paths ["config/prod" "resources"]}
:test {:resource-paths ["config/test" "resources"]
:dependencies [[mvxcvi/cljstyle "0.15.0"
:dependencies [[clj-http "3.12.3"]
[mvxcvi/cljstyle "0.15.0"
:exclusions [org.clojure/clojure]]]}}
:shadow-cljs {:nrepl {:port 8777}

Expand Down

0 comments on commit 776663a

Please sign in to comment.