Re: Compile problem with clojureql

2010-12-12 Thread Phil Hagelberg
On Sun, Dec 12, 2010 at 9:45 AM, Manuel Weikert wrote: > Why does this error only occur when I use ClojureQL? I built other > jars bofore using many other libraries and never ran into this... It's because of protocols. Code that uses protocols behaves differently when it's AOT-compiled--the refer

Re: Compile problem with clojureql

2010-12-12 Thread Manuel Weikert
Hmmm... Why does this error only occur when I use ClojureQL? I built other jars bofore using many other libraries and never ran into this... -- 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

Re: Compile problem with clojureql

2010-12-12 Thread Miki
You probably need to add " :keep-non-project-classes true" to project.clj, see https://github.com/technomancy/leiningen/issues/#issue/141 On Sunday, December 12, 2010 3:34:29 AM UTC-8, manuel.weikert wrote:Hi, I'm trying to write a little tool that fetches data from the web and stores it to a mysq

Compile problem with clojureql

2010-12-12 Thread Manuel Weikert
Hi, I'm trying to write a little tool that fetches data from the web and stores it to a mysql database. For the DB handling I decided to use ClojureQL. While developing on the REPL everything works fine and even compiling with 'lein uberjar' shows no sign of any error but as soon as try to run th