Gradle Wrapper Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:


=Overview=
=Overview=
=a=
=Install Gradle Wrapper in a Project=
=Install Gradle Wrapper in a Project=


Line 10: 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.