project.clj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. ;:profiles {:clj {}
  6. ; :cljs {}
  7. ; :objcbuild {}
  8. ; :droid {}
  9. ; :fruit {}
  10. ; }
  11. ;:aliases {"all" []}
  12. :modules {:dirs ["core"
  13. "pubsub-service"
  14. "web-client"
  15. "ios-client"]
  16. ; todo: clojure profiles for clojure environments. baseline, cljs, clj, objcbuild, fruit, droid, etc.
  17. :versions {com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
  18. com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
  19. ; idea: automatically insert module versions
  20. ; https://github.com/jcrossley3/lein-modules/issues/29
  21. lein-objcbuild "0.1.10"
  22. :clj1.7 "1.7.0"
  23. :cljs1.7 "1.7.170"
  24. :clj1.8 "1.8.0"
  25. :cljs1.8 "1.7.228"
  26. :clj-objc1.7 "1.7.0-RC1"
  27. :component/clojure1.2+ "0.2.3" ; ios, until [galdolber/clojure-objc "1.7.0"]
  28. :component/clojure1.7+ "0.3.1" ; other
  29. reagent "0.5.1"
  30. speclj "3.3.1"}
  31. }
  32. )