Fork me on GitHub
#leiningen
<
2019-07-22
>
dmaiocchi11:07:52

moin, what does AOT means in leiningen?

dmaiocchi11:07:25

I'm having this warning

Implicit AOT of :main will be removed in Leiningen 3.0.0.
If you only need AOT for your uberjar, consider adding :aot :all into your
:uberjar profile instead.
Compiling saint-build.core

manutter5111:07:55

AOT stands for Ahead Of Time, and refers to compiling your Clojure code to Java bytecodes up front, as opposed to dynamically compiling your namespaces as they are called.

😁 4
clj 4