leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
dmaiocchi 2019-07-22T11:45:52.003900Z

moin, what does AOT means in leiningen?

dmaiocchi 2019-07-22T11:46:25.004200Z

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

2019-07-22T11:50:55.005600Z

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.

1
😁 1
dmaiocchi 2019-07-22T11:55:52.005900Z

thx @manutter51

jumar 2019-07-22T12:57:00.006800Z

@darioszr you can read more here: https://clojure.org/reference/compilation

dmaiocchi 2019-07-22T13:02:55.007Z

Thx