diff --git a/lib/manager/gradle-lite/readme.md b/lib/manager/gradle-lite/readme.md index 67f8c78c0fca351f85b11187e6121c4272e5ed4e..a8d4be8db2726020ef00b45c2cb7dd8268b07a99 100644 --- a/lib/manager/gradle-lite/readme.md +++ b/lib/manager/gradle-lite/readme.md @@ -1,5 +1,5 @@ `gradle-lite` is an an alternate manager for Gradle, and is written in JavaScript. -The main benefit of `gradle-lite` is that it doesn't need to invoke the `gradle` tool from and command line in order to extract dependencies. +The main benefit of `gradle-lite` is that it doesn't need to invoke the `gradle` tool from the command line in order to extract the dependencies. To enable `gradle-lite`: @@ -18,3 +18,25 @@ To disable the original `gradle` manager if `gradle-lite` satisfies all requirem ``` Feedback for this manager would be welcome as we would like to switch it to be the default manager for Gradle soon. + +`gradle-lite` supports the following version definition strategies: + +- Version defined as a plain string in a `*.gradle` file, for example: `"org.springframework.boot:spring-boot-starter-web:2.5.1"` + +- Version defined as a local variable: + + - In `build.gradle`: + + ``` + def springBoot='2.5.1' + ... + "org.springframework.boot:spring-boot-starter-web:$springBoot" + ``` + +- Version defined as a variable in the accompanying `*.properties` file: + - In `gradle.properties`: `springBoot=2.5.1` + - In `build.gradle`: `"org.springframework.boot:spring-boot-starter-web:$springBoot"` + +Variables defined in other custom locations are not supported. + +See the [Gradle documentation](https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties) for details on defining variables.