Skip to content

Commit

Permalink
introduce http2
Browse files Browse the repository at this point in the history
  • Loading branch information
jimpil committed Aug 4, 2023
1 parent 4c3c781 commit 56f7ba4
Show file tree
Hide file tree
Showing 5 changed files with 681 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ checkouts/*
.nrepl-*

.clj-kondo/*
.lsp/*
.lsp/*
.calva/output-window/output.calva-repl
17 changes: 17 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: "3.8"
services:
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: 'rabbitmq'
ports:
- 5672:5672
- 15672:15672
volumes:
- ~/.docker-conf/rabbitmq/data/:/var/lib/rabbitmq/
- ~/.docker-conf/rabbitmq/log/:/var/log/rabbitmq
networks:
- rabbitmq_go_net

networks:
rabbitmq_go_net:
driver: bridge
7 changes: 4 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
[com.rabbitmq/amqp-client "5.18.0"]
[clojurewerkz/support "1.1.0" :exclusions [com.google.guava/guava]]
[clj-http "3.12.3"]
[cheshire "5.10.1"]]
[hato "0.9.0"]
[cheshire "5.11.0"]]
:profiles {:1.10 {:dependencies [[org.clojure/clojure "1.10.2"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:master {:dependencies [[org.clojure/clojure "1.12.0-master-SNAPSHOT"]]}
Expand All @@ -18,7 +19,7 @@
:source-uri "https://github.com/michaelklishin/langohr/blob/v{version}/{filepath}#L{line}"}}}
:source-paths ["src/clojure"]
:java-source-paths ["src/java"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:javac-options ["-target" "11" "-source" "1.8"]
:url "https://clojurerabbitmq.info"
:repositories {"sonatype" {:url "https://oss.sonatype.org/content/repositories/releases"
:snapshots false
Expand All @@ -42,7 +43,7 @@
:time-consuming :time-consuming
:performance :performance
:tls :tls
:ci (fn [m] (not (:tls m)))}
:ci (complement :tls)}
:mailing-list {:name "clojure-rabbitmq"
:archive "https://groups.google.com/group/clojure-rabbitmq"
:post "clojure-rabbitmq@googlegroups.com"})
Loading

0 comments on commit 56f7ba4

Please sign in to comment.