wrapperExecutableName is useful for example if you have gradlew in a different directory (e.g. ../gradlew), or in my case I also use a intermediate task that downloads and uses the Zulu OpenJDK if no JDK found before passing execution to gradlew.
wrapperAdditionalArgs also comes in handy (e.g. for my CI I logs want to add --console=plain).
wrapperExecutableName
is useful for example if you havegradlew
in a different directory (e.g.../gradlew
), or in my case I also use a intermediate task that downloads and uses the Zulu OpenJDK if no JDK found before passing execution to gradlew.wrapperAdditionalArgs
also comes in handy (e.g. for my CI I logs want to add--console=plain
).