Re: Best Installation Option

2011-06-06 Thread faenvie
i am also using ccw for eclipse but then cake instead of leiningen. this has the main-advantage of having an incredible fast development-cycle (running tests after change via commandline). this is because cake runs a persistent JVM, eliminating start-up overhead. (minor-)drawback: cake

Re: Best Installation Option

2011-06-06 Thread flebber
Thanks all for the excellent advice. Sayth -- 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

Re: Best Installation Option

2011-06-05 Thread flebber
Yeah I am using counterclockwise as well. Well I guess once I have built clojure and contrib with ant and maven I can copy and paste them where I need then use lenigen. Sayth -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send

Re: Best Installation Option

2011-06-05 Thread Mark Rathwell
Leiningen, via maven, will handle your clojure dependencies for you, no need to copy and paste any jar files. Lein is actually the only thing you need to install, and it will take care of everything else. I think the easiest way to start learning about leiningen is reading the readme and all of

Re: Best Installation Option

2011-06-05 Thread Sean Corfield
On Sat, Jun 4, 2011 at 11:43 PM, flebber flebber.c...@gmail.com wrote: Yeah I am using counterclockwise as well. The easiest process is: * lein new myproject * cd myproject * lein deps In Eclipse, create new Java project in the myproject folder (it will pick up the dependencies downloaded

Re: Best Installation Option

2011-06-05 Thread Laurent PETIT
Hi, 2011/6/5 Sean Corfield seancorfi...@gmail.com: On Sat, Jun 4, 2011 at 11:43 PM, flebber flebber.c...@gmail.com wrote: Yeah I am using counterclockwise as well. The easiest process is: * lein new myproject * cd myproject * lein deps In Eclipse, create new Java project in the myproject

Re: Best Installation Option

2011-06-05 Thread Sean Corfield
On Sun, Jun 5, 2011 at 12:26 PM, Laurent PETIT laurent.pe...@gmail.com wrote: Invert the 2 steps: after having invoked 'lein deps', first update the build path in your Eclipse project, then enable Clojure support for the project. CCW will not add clojure and/or contrib dependency if it already

Best Installation Option

2011-06-04 Thread flebber
Firstly, I have successfully installed clojure 1.3 alpha8. Just an enquiry as I am relatively new to the community, according to this guide http://en.wikibooks.org/wiki/Clojure_Programming/Getting_Started . clojure box is the best way to install on a windows machine, I notice however that this

Re: Best Installation Option

2011-06-04 Thread Jonathan Fischer Friberg
That was a weird guide. I don't see any real benefits from using some sort of 'installer' for clojure. In my view it's better to simply use maven or leiningen for actual management of dependencies (such as clojure). If you don't want that it's still simpler to just download a clojure jar file.

Re: Best Installation Option

2011-06-04 Thread Sean Corfield
I'm not a Windows user so I can't speak to any special needs in that environment but I'll +1 Leiningen as the simplest way I've found to get people up and running with Clojure. Clojure doesn't really need to be installed - it's just a JAR file that needs to be on your classpath - and Leiningen