gw is a gdub clone written in Rust for fun. It looks for a gradle build file (build.gradle or build.gradle.kts) and wrapper (gradlew or gradlew.bat) in your CWD and its parent directories and calls the wrapper in the directory of the build file. Any arguments passed to gw are passed to the wrapper.
Call gw build
anywhere in your gradle project and it will call ./gradlew build
in the directory of the nearest build file.
gw build # instead of # ./gradlew build
gw build # instead of # ../gradlew build
gw build # instead of # ../../gradlew build
...
cargo install gw
gw
in one of your gradle projectsor use a released binary:
gw
or on windows gw.exe
gw
in your gradle projects