Re: Adding Classpaths On The Fly

2009-09-28 Thread Roman Roelofsen
Hi, I am currently working on a Clojure / OSGi integration: www.ogeesource.org The goal is to extend Clojure with a module-like runtime, not to fully convert Clojure and Clojure-based applications to OSGi (which would be quite hard anyway). So far you can add new modules at runtime and therefor

Re: Adding Classpaths On The Fly

2009-09-27 Thread Volkan YAZICI
For the record, I'm forwarding below reply from Stuart Sierra. On Fri, 25 Sep 2009, Stuart Sierra writes: > On Sep 25, 3:02 am, Volkan YAZICI wrote: >> - (System/setProperty >>"java.class.path" >>(str (System/getProperty "java.class.path") >> ":/tmp/code")) > > The "java.class.p

Re: Adding Classpaths On The Fly

2009-09-25 Thread David Nolen
On Fri, Sep 25, 2009 at 3:02 AM, Volkan YAZICI wrote: > > Hi, > > I'm trying to add a classpath to the current Clojure REPL session on the > fly. (Particularly, I extracted shcloj-code.tgz of Programming Clojure > to /tmp/code directory, and trying to load /tmp/code/examples/snake.clj > file.) For

Re: Adding Classpaths On The Fly

2009-09-25 Thread Laurent PETIT
Hello, maybe this post from Christophe Grand can help : http://clj-me.blogspot.com/2009/01/living-on-bleeding-edge.html regards, -- laurent 2009/9/25 Volkan YAZICI > > Hi, > > I'm trying to add a classpath to the current Clojure REPL session on the > fly. (Particularly, I extracted shcloj-co