The monolithic contrib (1.2.0) has been deprecated. Updated versions of many of the modules are available individually:
http://dev.clojure.org/display/design/Where+Did+Clojure.Contrib+Go However, if you have the JAR on your classpath, that namespace should be available. It would help people help you if you provided more detail: * How are you running your Clojure code? * What _exact_ error message (and partial stack trace) are you seeing? Here's an example workflow that shows you can access clojure.contrib.sql just fine: sean@sean-netbook:~/clojure$ lein new jay cd Created new project in: /home/sean/clojure/jay Look over project.clj and start coding in jay/core.clj sean@sean-netbook:~/clojure$ cd jay/ sean@sean-netbook:~/clojure/jay$ vi project.clj sean@sean-netbook:~/clojure/jay$ cat project.clj (defproject jay "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies [[org.clojure/clojure "1.2.1"] [org.clojure/clojure-contrib "1.2.0"]]) sean@sean-netbook:~/clojure/jay$ lein deps Copying 2 files to /home/sean/clojure/jay/lib sean@sean-netbook:~/clojure/jay$ lein repl REPL started; server listening on localhost port 13024 user=> (ns jay.test (:require [clojure.contrib.sql :as sql])) nil jay.test=> ^D Sean On Fri, Dec 23, 2011 at 10:17 PM, jayvandal <s...@ida.net> wrote: > Where is this file to be found?? > (:require [clojure.contrib.sql :as sql])) > I see it listed in the jar but?? > I have the clojure.contrib-11.2.0.jar located in my classpath > c:\opt\jars, as well as the clojure.jar > > Am I the only one who has trouble with these files?? -- 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