2021-05-05 02:20:01 +02:00
|
|
|
# How to upgrade the Gradle version
|
|
|
|
|
|
|
|
Visit the [Gradle website](https://gradle.org/releases/) and decide the:
|
|
|
|
|
|
|
|
- desired version
|
|
|
|
- desired distribution type
|
|
|
|
- what is the sha256 for the version and type chosen above
|
|
|
|
|
|
|
|
Adjust the following command with tha arguments above and execute it twice:
|
|
|
|
|
2022-09-19 14:59:57 +02:00
|
|
|
./gradlew wrapper --gradle-version 7.3.3 \
|
2021-05-05 02:20:01 +02:00
|
|
|
--distribution-type all \
|
2022-09-19 14:59:57 +02:00
|
|
|
--gradle-distribution-sha256-sum c9490e938b221daf0094982288e4038deed954a3f12fb54cbf270ddf4e37d879
|
2021-05-05 02:20:01 +02:00
|
|
|
|
|
|
|
The first execution should automatically update:
|
|
|
|
|
2022-09-19 14:59:57 +02:00
|
|
|
- `haveno/gradle/wrapper/gradle-wrapper.properties`
|
2021-05-05 02:20:01 +02:00
|
|
|
|
|
|
|
The second execution should then update:
|
|
|
|
|
2022-09-19 14:59:57 +02:00
|
|
|
- `haveno/gradle/wrapper/gradle-wrapper.jar`
|
|
|
|
- `haveno/gradlew`
|
|
|
|
- `haveno/gradlew.bat`
|
2021-05-05 02:20:01 +02:00
|
|
|
|
|
|
|
The four updated files are ready to be committed.
|