project.clj 647 B

1234567891011121314151617
  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. :versions {com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
  8. com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
  9. lein-objcbuild "0.1.10"
  10. org.clojure/clojure "1.7.0"
  11. org.clojure/clojurescript "1.7.170"
  12. com.stuartsierra/component "0.3.1"}
  13. }
  14. )