Re: clojure dependencies

2013-04-28 Thread John Gabriele
On Friday, April 26, 2013 8:04:02 PM UTC-4, jayvandal wrote: > > I have this code. > (defproject jsql "1.0.0-SNAPSHOT" > :description "FIXME: write" > :dependencies [[org.clojure/clojure "1.4.0"]])(use 'clojure.java.jdbc) > > > My question is where do the dependencies locate? I would put the fi

Re: clojure dependencies

2013-04-26 Thread Sean Corfield
On Fri, Apr 26, 2013 at 5:04 PM, jayvandal wrote: > I have this code. > (defproject jsql "1.0.0-SNAPSHOT" > :description "FIXME: write" > :dependencies [[org.clojure/clojure "1.4.0"]]) That would be your project.clj file, in a Leiningen-created project folder. When you run: lein repl Leini

clojure dependencies

2013-04-26 Thread jayvandal
I have this code. (defproject jsql "1.0.0-SNAPSHOT" :description "FIXME: write" :dependencies [[org.clojure/clojure "1.4.0"]])(use 'clojure.java.jdbc) My question is where do the dependencies locate? I would put the files in the c:\clojure-1.4.0 How does clojure know where they are? Are the