Gradle Wrapper Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 8: Line 8:


<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
gradle wrapper  
gradle wrapper [--gradle-version 6.8.3] [--distribution-type all]
</syntaxhighlight>
</syntaxhighlight>


Normally [[gradle init]] also installs a wrapper in the project.
Normally [[gradle init]] also installs a wrapper in the project.

Latest revision as of 01:26, 27 March 2021

Internal

Overview

Install Gradle Wrapper in a Project

Install a gradle wrapper for the same version as the one that runs the command.

gradle wrapper [--gradle-version 6.8.3] [--distribution-type all]

Normally gradle init also installs a wrapper in the project.