If you want to keep jar size down and avoid class loader problems, instead of excluding source I'd avoid aot and only ship source. If you need the JVM to find your main class you can write a shim and only aot-compile that.
On Wed Jan 21 2015 at 12:36:03 PM Brian Craft <[email protected]> wrote: > Fixed it by adding :aot [mikera.vectorz.core] to the uberjar profile. > > > On Wednesday, January 21, 2015 at 11:26:47 AM UTC-8, Brian Craft wrote: >> >> I'm excluding source when building uberjar, due to jar size and class >> loader problems at run time. However I now get "Unable to find >> implementation :vectorz" errors at run time. Is there some way to work >> around this? >> > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
