-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded Gradle to the latest version, which has better module-info support for the imported gradle dependencies.
- Loading branch information
Showing
5 changed files
with
31 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 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 | ||
|
||
Adjust the following command with tha arguments above and execute it twice: | ||
|
||
|
||
./gradlew wrapper --gradle-version 6.6.1 \ | ||
--distribution-type all \ | ||
--gradle-distribution-sha256-sum 11657af6356b7587bfb37287b5992e94a9686d5c8a0a1b60b87b9928a2decde5 | ||
|
||
|
||
The first execution should automatically update `bisq/gradle/wrapper/gradle-wrapper.properties` | ||
|
||
The second execution should update: | ||
* `bisq/gradle/wrapper/gradle-wrapper.jar` | ||
* `bisq/gradlew` | ||
* `bisq/gradlew.bat` | ||
|
||
The four updated files are ready to be committed. |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip | ||
distributionSha256Sum=0f316a67b971b7b571dac7215dcf2591a30994b3450e0629925ffcfe2c68cc5c | ||
distributionSha256Sum=11657af6356b7587bfb37287b5992e94a9686d5c8a0a1b60b87b9928a2decde5 | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters