Gradle Wrapper: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
=Internal=
=Internal=
* [[Gradle Concepts#Subject|Gradle Concepts]]
* [[Gradle Concepts#Subject|Gradle Concepts]]
=Overview=


=Configuration=
=Configuration=
Line 12: Line 14:
zipStorePath=wrapper/dists
zipStorePath=wrapper/dists
</syntaxhighlight>
</syntaxhighlight>
=Operations=
* [[Gradle Wrapper Operations]]
=Organizatorium=
=Organizatorium=


* Each wrapper comes with sources: ~/.gradle/wrapper/dists/gradle-6.2.2-all/2k4hz1yffuhb6ob9prdg10tx/gradle-6.2.2/src
* Each wrapper comes with sources: ~/.gradle/wrapper/dists/gradle-6.2.2-all/2k4hz1yffuhb6ob9prdg10tx/gradle-6.2.2/src
* The corresponding JAR file and the wrapper configuration is stored in the project directory under [[Gradle_Files_Layout#gradle|gradle/wrapper]].
* The corresponding JAR file and the wrapper configuration is stored in the project directory under [[Gradle_Files_Layout#gradle|gradle/wrapper]].

Revision as of 01:15, 27 March 2021

Internal

Overview

Configuration

gradlew-wrapper.properties

Maintained in the project under gradle/wrapper/gradlew-wrapper.properties:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

Operations

Organizatorium

  • Each wrapper comes with sources: ~/.gradle/wrapper/dists/gradle-6.2.2-all/2k4hz1yffuhb6ob9prdg10tx/gradle-6.2.2/src
  • The corresponding JAR file and the wrapper configuration is stored in the project directory under gradle/wrapper.