project.clj 718 B

12345678910111213141516171819
  1. (defproject com.github.harlanji/clojure-stack "0.0.1-SNAPSHOT"
  2. :description "A demo PubSub microservice."
  3. :plugins [[lein-modules "0.3.11"]
  4. [lein-ancient "0.6.8"]]
  5. :modules {:dirs ["core"
  6. "pubsub-service"
  7. "web-client"]
  8. :versions {com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
  9. com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
  10. lein-objcbuild "0.1.10"
  11. org.clojure/clojure "1.8.0"
  12. org.clojure/clojurescript "1.7.228"
  13. com.stuartsierra/component "0.3.1"
  14. reagent "0.5.1"}
  15. }
  16. )