Hi all,

I'm having a really ridiculous problem...let's say there is jar on clojars with the following structure:

--- top-level (.jar)
  --foo (clojure namespaces)
    -a.clj
    -b.clj
    -c.clj
  --
  --bar (java .class files - no package declaration when compiled)
     --baz
      -d.class
      -g.class
    --
  --
project.clj
--

When i require namespaces from foo there is no problem (:require [foo.a :as A])...but when I try to import a couple of java class files from bar (:import [bar.baz d g]) it's not finding them!

I compiled them specifically without package declarations so I can put them anywhere...I also tried without the "bar.baz" prefixing them but it doesn't work...

what am I missing? any pointers?

Jim

--
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

Reply via email to