gradle.rst
changeset 2468 cab0464c11f4
parent 2467 0498f0cc9966
child 2502 45513923d474
equal deleted inserted replaced
2467:0498f0cc9966 2468:cab0464c11f4
   456 Distribution SHA-256 sum can be obtained via ``shasum`` utility.
   456 Distribution SHA-256 sum can be obtained via ``shasum`` utility.
   457 
   457 
   458 https://docs.gradle.org/current/userguide/gradle_wrapper.html
   458 https://docs.gradle.org/current/userguide/gradle_wrapper.html
   459   Official docs.
   459   Official docs.
   460 
   460 
       
   461 Migrating to newer Gradle
       
   462 =========================
       
   463 
       
   464 Try to eliminate all deprecation warnings::
       
   465 
       
   466   ./gradlew testClasses --warning-mode all
       
   467 
       
   468 Update Gradle distro to newer version::
       
   469 
       
   470   ./gradlew wrapper --gradle-version 6.7
       
   471 
       
   472 Try to eliminate another portion of deprecation warnings and run build/tests::
       
   473 
       
   474   ./gradlew test --warning-mode all
       
   475 
   461 Managing Gradle cache
   476 Managing Gradle cache
   462 =====================
   477 =====================
   463 
   478 
   464 Work in offline mode with ``--offline`` option.
   479 Work in offline mode with ``--offline`` option.
   465 
   480