Re: clojure dependency management and build

2009-04-13 Thread dysinger
On Apr 13, 10:58 am, bradford cross wrote: > I have written up my journeys so > far:http://bradfordcross.blogspot.com/2009/04/clojure-build-and-dependenc... Nice article. > I re-used Meikel's ant + ivy successfully.   Next step is to get something > working for the transative deps , i.e. pulli

Re: clojure dependency management and build

2009-04-13 Thread bradford cross
On Mon, Apr 13, 2009 at 3:22 PM, Laurent PETIT wrote: > Hi, > > 2009/4/14 bradford cross > >> >> >> On Mon, Apr 13, 2009 at 2:31 PM, Stephen C. Gilardi wrote: >> >>> On Apr 13, 2009, at 4:58 PM, bradford cross wrote: I have written up my journeys so far: http://bradfordcross.blogs

Re: clojure dependency management and build

2009-04-13 Thread Laurent PETIT
Hi, 2009/4/14 bradford cross > > > On Mon, Apr 13, 2009 at 2:31 PM, Stephen C. Gilardi wrote: > >> On Apr 13, 2009, at 4:58 PM, bradford cross wrote: >>> >>> I have written up my journeys so far: >>> http://bradfordcross.blogspot.com/2009/04/clojure-build-and-dependency-management.html >>> >> >

Re: clojure dependency management and build

2009-04-13 Thread bradford cross
On Mon, Apr 13, 2009 at 2:31 PM, Stephen C. Gilardi wrote: > On Apr 13, 2009, at 4:58 PM, bradford cross wrote: >> >> I have written up my journeys so far: >> http://bradfordcross.blogspot.com/2009/04/clojure-build-and-dependency-management.html >> > > Thanks very much for the write-up! > > Given

Re: clojure dependency management and build

2009-04-13 Thread Stephen C. Gilardi
On Apr 13, 2009, at 4:58 PM, bradford cross wrote: I have written up my journeys so far: http://bradfordcross.blogspot.com/2009/04/clojure-build-and-dependency-management.html Thanks very much for the write-up! Given the recent discussions and interest in dependency management I thought I'd

Re: clojure dependency management and build

2009-04-13 Thread bradford cross
I have written up my journeys so far: http://bradfordcross.blogspot.com/2009/04/clojure-build-and-dependency-management.html I re-used Meikel's ant + ivy successfully. Next step is to get something working for the transative deps , i.e. pulling other clojure projects i depend on and building the

Re: clojure dependency management and build

2009-04-11 Thread Meikel Brandmeyer
Hi Bradford, Am 08.04.2009 um 21:31 schrieb Bradford Cross: I heard some chatter yesterday on #clojure about using Ivy with Clojure. Yes. I'm working on marrying Clojure and Ivy. So far with, IMHO, great success. I set up a little ivy repo with clojure and contrib. The clojure module has the

Re: clojure dependency management and build

2009-04-10 Thread ronen
Iv been using gant which has built in support for Ivy & Ant (for example http://tiny.cc/tRGKB), since the build scripts are code they make it easier to keep build scripts DRY. On Apr 9, 9:40 pm, Bradford Cross wrote: > On Thu, Apr 9, 2009 at 11:34 AM, Stuart Sierra > wrote: > > > > > > > I keep

Re: clojure dependency management and build

2009-04-09 Thread Bradford Cross
On Thu, Apr 9, 2009 at 11:34 AM, Stuart Sierra wrote: > > I keep a "Clojure stuff" dir with the latest revisions of all the > projects I track -- Clojure, contrib, swank, slime, etc. -- and update > them all with a shell script that runs the various "svn update" and > "git pull" commands. So I al

Re: clojure dependency management and build

2009-04-09 Thread Stuart Sierra
I keep a "Clojure stuff" dir with the latest revisions of all the projects I track -- Clojure, contrib, swank, slime, etc. -- and update them all with a shell script that runs the various "svn update" and "git pull" commands. So I always have access to the latest version of everything. But I don

Re: clojure dependency management and build

2009-04-08 Thread Phil Hagelberg
Stuart Halloway writes: > Lancet is more at proof-of-concept stage than ready for heavy lifting > -- I am using a mix of Ant and Rake on my own Clojure stuff. :-) > > I am happy to contribute to solving some of these issues but don't > have time to lead the effort. I'm also quite willing to

Re: clojure dependency management and build

2009-04-08 Thread Stuart Halloway
Lancet is more at proof-of-concept stage than ready for heavy lifting -- I am using a mix of Ant and Rake on my own Clojure stuff. :-) I am happy to contribute to solving some of these issues but don't have time to lead the effort. Stuart > When you are building something real with Clojure

clojure dependency management and build

2009-04-08 Thread Bradford Cross
When you are building something real with Clojure and Emacs/Slime/Swank - things can get a bit hairy with dependency management. I have scoured the inter-tubes in the past couple days to see what I could find. I found Lancet, for builds: http://github.com/stuarthalloway/lancet/tree/master I hav