moin, what does AOT means in leiningen?
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
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.
thx @manutter51
@darioszr you can read more here: https://clojure.org/reference/compilation
Thx