project.clj 1.4 KB

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