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 files in 
> the c:\clojure-1.4.0
> How does clojure know where they are?  Are they in 
> c:\clojure-1.4.0\org\clojure folder?
>

Hi,

If you're not already doing so, you want to install Leiningen and let it 
take care of dependency handling (including Clojure itself).

Lein keeps dependencies in your ~/.m2/repository directory. It manages 
everything --- you don't need to manually download anything after 
installing lein.

Lein takes care of telling Clojure where to find dependencies in there.

Probably the only reason to have a c:\clojure-1.x directory is if you'd 
like to look around through the Clojure source code files.

If you're just getting started, maybe have a look at 
http://clojure-doc.org/articles/tutorials/getting_started.html .

---John

-- 
-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to