AOT does matter, because AOT is transitive. Effectively, all AOT builds are 
like Uberjars. They compile your code and the code of your dependencies and 
theirs as well into .class files putting everything in the build folder. Then 
the package will take all the classes and put them in the Jar.

Any library that does that does it wrong. Don't AOT your libraries for that 
reason. Or make sure if you do, you are only including .class of your library 
code, not any of its dependencies. And even ideally, like I said, only include 
the bare minimum, so only .classes required for interop. The rest package as 
source.

-- 
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
--- 
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 clojure+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/clojure/4516034c-7a15-4424-b0bb-fad483d59ea2%40googlegroups.com.

Reply via email to