- Tools subproject qualifier:
:tools
- Assuming your working directory is the repo root
NOTE: one may use the
-p
flag for./gradlew
in order to avoid specifying the target subproject repeatedly on each task when running multiple tasks. When running only a single task, however, it is recommended to use the project qualifier (i.e.:tools:
) for both simplicity and clarity.
There is a command line script for building and running tool, which is located in the root of the repository. It has the nice extra feature of giving you colored console output.
./tool.sh info --help
NOTE: if you have not done so already, it is generally recommended to build the entire repo first:
./gradlew clean build -x test
- To quickly build the Tools sources (without running tests), do the following:
./gradlew -p tools clean build -x test
- To run the Tools, do the following:
# Here is an example of running the info command with the help option, simply # replace `info --help` with the desired command and options to run the tools # quickly using the `./gradlew run` task. ./gradlew -q :tools:run --args="info --help"