project.clj 808 B

123456789101112131415161718192021
  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. "ios-client"]
  9. :versions {com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
  10. com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
  11. lein-objcbuild "0.1.10"
  12. org.clojure/clojure "1.8.0"
  13. org.clojure/clojurescript "1.7.228"
  14. galdolber/clojure-objc "1.7.0-RC1"
  15. com.stuartsierra/component "0.3.1"
  16. reagent "0.5.1"}
  17. }
  18. )