leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
Audrius 2021-03-15T12:04:47.002Z

how to pass -Dproperty1=value to lein repl?

quoll 2021-03-15T14:58:27.002100Z

from what I can see, you do it by setting:

export LEIN_JVM_OPTS=-Dproperty1=value
in your environment

quoll 2021-03-15T15:09:16.002300Z

Though that will overwrite some defaults. It’s probably safest to add them back in:

export LEIN_JVM_OPTS="-Dproperty1=value -Xverify:none -XX:+TieredCompilation -XX:TieredStopAtLevel=1"

Audrius 2021-03-15T19:30:09.002800Z

thank you @quoll 😉