project.clj 692 B

1234567891011121314
  1. (defproject com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
  2. :plugins [[lein-modules "0.3.11"]
  3. [lein-ring "0.9.7"]]
  4. :dependencies [[org.clojure/clojure "_"]
  5. [prismatic/schema "1.0.3"]
  6. [org.clojure/tools.cli "0.3.3"]
  7. [nginx-clojure "0.4.3"]
  8. [ring/ring-core "1.4.0"]
  9. [ring/ring-json "0.4.0"]
  10. [bidi "1.21.1"]
  11. [com.github.harlanji.clojure-stack/core "_"]]
  12. :ring {:init pubsub.demo/init
  13. :handler pubsub.demo/app}
  14. )