2 unstable releases
0.2.0 | Feb 22, 2020 |
---|---|
0.1.3 | Feb 19, 2020 |
#1162 in Development tools
8KB
79 lines
gw
gw is a gdub clone written in Rust for fun. It finds the nearest gradle build file and executes it with the corresponding wrapper. Any arguments passed to gw are passed to the wrapper. If there is no gradle wrapper it tries to use gradle from $PATH. Works on Linux, MacOS and Windows.
Call gw build
anywhere in your gradle project and it will call ./gradlew build
in the directory of the nearest gradle build file.
without gw | with gw |
---|---|
./gradlew build |
gw build |
../gradlew build |
gw build |
../../gradlew build |
gw build |
... |
|
gradle build |
gw build |
gradle -b ../build.gradle build |
gw build |
gradle -b ../../build.gradle build |
gw build |
... |
Installation
- Install Rust's cargo
cargo install gw
- Use
gw
in one of your gradle projects
or use a released binary:
- Download a release binary for your platform
- Rename it to
gw
or on windowsgw.exe
- Put it on your $PATH
- Enjoy
gw
in your gradle projects
Dependencies
~0–7.5MB
~44K SLoC