project.clj 775 B

123456789101112131415
  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 :clj1.7]
  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. [com.stuartsierra/component :component/clojure1.7+]]
  13. :ring {:init pubsub.demo/init
  14. :handler pubsub.demo/app}
  15. )