On Tuesday, July 1, 2014 at 11:36:19 PM UTC+3, NotRobert Deniro wrote: > The build team at the customer's site can't use lein (for whatever reason). > > I figured the way to build everything else ( protobufs, uberjar, aot, etc.. ) > between projects. > > Is there a maven way to build ClojureScript e.g. the same way lein-cljsbuild > does it? (Or using lein-cljsbuild from maven..) > > Thank you, > /Anatoly
This thread is a bit old, but I'd like to note for the sake of others that ClojureScript is not tied to Leiningen. It is a Clojure library, and can be used as such directly. https://github.com/clojure/clojurescript/wiki/Quick-Start this describes a workflow that can be as simple as `(require 'cljs.build.api) (cljs.build.api/build "src" {:output-to "out/main.js"})`. -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
