nu_scripts/custom-completions/gradlew
OJarrisonn_ edb832840f
feat: add ./gradlew completions (#855)
Adds completions for when using a `./gradlew` script in Gradle projects

The script provides completions both for the script flags and for the
available tasks in the current project
2024-05-28 06:34:50 -05:00
..
gradlew-completions.nu feat: add ./gradlew completions (#855) 2024-05-28 06:34:50 -05:00
readme.md feat: add ./gradlew completions (#855) 2024-05-28 06:34:50 -05:00

Gradle Wrapper

gradlew, short for "Gradle Wrapper", is a script designed to provide a consistent and reliable way to build and run Gradle projects, regardless of the environment in which the project is being executed. This script ensures that the correct version of Gradle is used, even if Gradle is not installed on the host machine. It's really common to see a gradlew script in projects in JVM languages (Java, Kotlin, etc).