The extensible reader

2012-03-17 Thread Brent Millare
So I just watched the Clojure conj keynote 2011 and I am particularly interested in the extensible reader component. Is there anything of this available for testing in master or 1.4.0-beta*? What's the best way to pass around java types in the reader like s? -- You received this message becaus

Re: clojure url exception

2012-03-17 Thread Brent Millare
I still see this in 1.4.0-beta5 > > -- 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

Re: OSGi manifest creation for Clojure projects

2012-03-17 Thread Paudi Moriarty
Yep, I have to repackage the transitive deps too but so far it's not proven to be a major hassle. I only have 10 or so clojure deps in total but the automatic manifest creation is the real timesaver. Paudi Sent from my iPhone On 17 Mar 2012, at 09:34, Laurent PETIT wrote: > Hi, > How d

Re: OSGi manifest creation for Clojure projects

2012-03-17 Thread Laurent PETIT
Hi, How do you handle transitive dependencies ? Like, if you're repackaging library lib into my.osgi.lib, you'll also have to e.g. repackage library foo which library lib depends on as my.osgi.foo, and also change my.osgi.lib's pom.xml so that it now depends on library my.osgi.foo ... ? Also, I d

Re: OSGi manifest creation for Clojure projects

2012-03-17 Thread Paudi Moriarty
It would be nice to setup a repository of Clojure bundles somewhere since the bundling process is now pretty straightforward. I have to use AOT as I can't ship source so The protocol issue with AOT is a bit frustrating. We end up having to AOT every bundle. This is acceptable to me as I have t