Re: what is the correct way to "mvn install" clojure-contrib

2009-12-15 Thread B Smith-Mannschott
Rob, DTH, Thanks for the responses. I guess that's more or less what I feared. I had hoped that I was overlooking something. I'll just put a little script on my integration branch which calls install:install-file with the proper arguments. (The pom.xml solution is too great a violation of DRY for

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-14 Thread DTH
On Dec 13, 9:17 pm, B Smith-Mannschott wrote: > > Summary: > > I've tried three different ways to get this to work and failed. What > am I overlooking? The nightly builds exist, so clearly this must be > working for someone, just not me. > mvn install:install-file -DpomFile=pom.xml -Dfile=clojure

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-14 Thread DTH
On Dec 13, 9:17 pm, B Smith-Mannschott wrote: > Summary: > > I've tried three different ways to get this to work and failed. What > am I overlooking? The nightly builds exist, so clearly this must be > working for someone, just not me. mvn install:install-file -DpomFile=pom.xml -Dfile=clojure-con

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-14 Thread Rob Wolfe
B Smith-Mannschott writes: > On Sun, Dec 13, 2009 at 23:15, dysinger wrote: >> I highly recommend you use the snapshots on build.clojure.org.  Lein >> already has build.clojure.org snapshots in it's repo list.  You don't >> need to do anything more than put >> >>  :dependencies [[org.clojure/clo

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-14 Thread Chas Emerick
The poms in clojure and clojure-contrib are not currently suitable for installing/deploying the produced artifacts as-is (something that I keep meaning to work on). We continue to rely upon in-house builds, which I deploy using deploy:deploy-file along with tweaked pom files -- you can do

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-13 Thread B Smith-Mannschott
On Sun, Dec 13, 2009 at 23:15, dysinger wrote: > I highly recommend you use the snapshots on build.clojure.org.  Lein > already has build.clojure.org snapshots in it's repo list.  You don't > need to do anything more than put > >  :dependencies [[org.clojure/clojure "1.1.0-master-SNAPSHOT"] > [org

Re: what is the correct way to "mvn install" clojure-contrib

2009-12-13 Thread dysinger
I highly recommend you use the snapshots on build.clojure.org. Lein already has build.clojure.org snapshots in it's repo list. You don't need to do anything more than put :dependencies [[org.clojure/clojure "1.1.0-master-SNAPSHOT"] [org.clojure/clojure-contrib "1.1.0-master-SNAPSHOT"]] in you

what is the correct way to "mvn install" clojure-contrib

2009-12-13 Thread B Smith-Mannschott
I'm building clojure-contrib locally from source, and would like to use the resulting jar file in other projects, which I'm building with leiningen. To accomplish this, I need to get the clojure-contrib.jar resulting form the build installed in the correct place in ~/.m2/repository. I've been doing