123456789101112131415161718192021222324252627282930313233343536373839404142 |
- (defproject com.github.harlanji/clojure-stack "0.0.1-SNAPSHOT"
- :description "A demo PubSub microservice."
- :plugins [[lein-modules "0.3.11"]
- [lein-ancient "0.6.8"]]
- ;:profiles {:clj {}
- ; :cljs {}
- ; :objcbuild {}
- ; :droid {}
- ; :fruit {}
- ; }
- ;:aliases {"all" []}
- :modules {:dirs ["core"
- "pubsub-service"
- "web-client"
- "web-backend"
- "ios-client"
- "visualizer"]
- ; todo: clojure profiles for clojure environments. baseline, cljs, clj, objcbuild, fruit, droid, etc.
- :versions {com.github.harlanji.clojure-stack/core "0.0.1-SNAPSHOT"
- com.github.harlanji.clojure-stack/pubsub-service "0.0.1-SNAPSHOT"
- ; idea: automatically insert module versions
- ; https://github.com/jcrossley3/lein-modules/issues/29
- lein-objcbuild "0.1.10"
- :clj1.7 "1.7.0"
- :cljs1.7 "1.7.170"
- :clj1.8 "1.8.0"
- :cljs1.8 "1.7.228"
- :clj-objc1.7 "1.7.0-RC1"
- :component/clojure1.2+ "0.2.3" ; ios, until [galdolber/clojure-objc "1.7.0"]
- :component/clojure1.7+ "0.3.1" ; other
- reagent "0.5.1"
- speclj "3.3.1"}
- }
- )
|