Not directly kotlin related, but thought it'd be u...
# gradle
b
Not directly kotlin related, but thought it'd be useful to share. I've written few bash scripts that you could install in
/usr/local/bin
(or any other directory on
$PATH
) to ease some pains when working on multi-module projects. It basically finds the nearest
gradlew
file to execute with, allowing you to run tasks via
gradlew
from any submodule. Helps a ton to make sure the team is building with the same exact gradle setup 😄
r
Are you aware of https://github.com/gdubw/gng ?
b
I am, but unfortunatelly it doesn't support flat gradle projects (where modules are added via
includeFlat "submodule"
). Thus the need for yet another script 😕
r
Cool, just checking!