I don't know much about cake other than that it is basically lein with a
persistent JVM and a defines tasks differently, but:

1. lein uses Maven to fetch dependencies.  The documentation for Maven can
be found at [1].

2. I'm not sure what type of setup you are looking for in production, but if
you just want to deploy a jar, lein has a task called uberjar that will
bundle your code and all dependency code into one big jar file:

lein uberjar

and you run the output jar file with:

java -jar [options] my.uber.jar


[1] http://maven.apache.org/
<http://maven.apache.org/>

On Mon, Aug 1, 2011 at 8:18 AM, octopusgrabbus <octopusgrab...@gmail.com>wrote:

> On a production system, I would like to implement less sophisticated
> build shell scripts without the benefit of having installed cake or
> its dependencies. I am using cake on my Ubuntu development
> workstation; it works well.
>
> However, when Cake fetches dependencies, all that detail is hidden.
> Therefore, I am wondering where Clojure's build steps are documented,
> including fetching dependencies.
>
> Many thanks.
> cmn
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to