Class Wrapper

java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.tasks.wrapper.Wrapper
All Implemented Interfaces:
Comparable<Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal, Named, ExtensionAware, Task, Configurable<Task>

@DisableCachingByDefault(because="Updating the wrapper is not worth caching") public abstract class Wrapper extends DefaultTask

Generates scripts (for *nix and windows) which allow you to build your project with Gradle, without having to install Gradle.

When a user executes a wrapper script the first time, the script downloads and installs the appropriate Gradle distribution and runs the build against this downloaded distribution. Any installed Gradle distribution is ignored when using the wrapper scripts.

The scripts generated by this task are intended to be committed to your version control system. This task also generates a small gradle-wrapper.jar bootstrap JAR file and properties file which should also be committed to your VCS. The scripts delegate to this JAR.

  • Field Details

  • Constructor Details

    • Wrapper

      public Wrapper()
  • Method Details

    • generate

      void generate()
    • getScriptFile

      @OutputFile public abstract RegularFileProperty getScriptFile()
      Returns the file to write the wrapper script to.
    • getBatchScript

      @OutputFile public Provider<RegularFile> getBatchScript()
      Returns the file to write the wrapper batch script to.
    • getJarFile

      @OutputFile public abstract RegularFileProperty getJarFile()
      Returns the file to write the wrapper jar file to.
    • getPropertiesFile

      @OutputFile public Provider<RegularFile> getPropertiesFile()
      Returns the file to write the wrapper properties to.
    • getDistributionPath

      @Input public abstract Property<String> getDistributionPath()
      Returns the path where the gradle distributions needed by the wrapper are unzipped. The path is relative to the distribution base directory
    • getGradleVersion

      @Input public abstract Property<String> getGradleVersion()
      The version of the gradle distribution required by the wrapper. This is usually the same version of Gradle you use for building your project. The following labels are allowed to specify a version: latest, release-candidate, release-milestone, release-nightly, and nightly

      The resulting distribution url is validated before it is written to the gradle-wrapper.properties file.

    • getDistributionType

      @Input public abstract Property<Wrapper.DistributionType> getDistributionType()
      Returns the type of the Gradle distribution to be used by the wrapper. By default, this is Wrapper.DistributionType.BIN, which is the binary-only Gradle distribution without documentation.
    • getAvailableDistributionTypes

      @Internal @Deprecated public List<Wrapper.DistributionType> getAvailableDistributionTypes()
      Deprecated.
      Since 9.3.0. Use Wrapper.DistributionType.values() directly instead.
      The list of available gradle distribution types. Always returns the contents of Wrapper.DistributionType.values().
    • getDistributionUrl

      @Input public abstract Property<String> getDistributionUrl()
      The URL to download the gradle distribution from.

      If not set, the download URL is the default for the specified getGradleVersion().

      If getGradleVersion() is not set, will return null.

      The wrapper downloads a certain distribution only once and caches it. If your distribution base is the project, you might submit the distribution to your version control system. That way no download is necessary at all. This might be in particular interesting, if you provide a custom gradle snapshot to the wrapper, because you don't need to provide a download server then.

      The distribution url is validated before it is written to the gradle-wrapper.properties file.

    • getDistributionSha256Sum

      @Input @Optional public abstract Property<String> getDistributionSha256Sum()
      The SHA-256 hash sum of the gradle distribution.

      If not set, the hash sum of the gradle distribution is not verified.

      The wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison. This increases security against targeted attacks by preventing a man-in-the-middle attacker from tampering with the downloaded Gradle distribution.

      Since:
      4.5
    • getDistributionBase

      @Input public abstract Property<Wrapper.PathBase> getDistributionBase()
      The distribution base specifies whether the unpacked wrapper distribution should be stored in the project or in the gradle user home dir.
    • getArchivePath

      @Input public abstract Property<String> getArchivePath()
      Returns the path where the gradle distributions archive should be saved (i.e. the parent dir). The path is relative to the archive base directory.
    • getArchiveBase

      @Input public abstract Property<Wrapper.PathBase> getArchiveBase()
      The archive base specifies whether the unpacked wrapper distribution should be stored in the project or in the gradle user home dir.
    • getNetworkTimeout

      @Input @Optional public abstract Property<Integer> getNetworkTimeout()
      The network timeout specifies how many ms to wait for when the wrapper is performing network operations, such as downloading the wrapper jar.
      Since:
      7.6
    • getRetries

      @Input @Incubating @Optional public abstract Property<Integer> getRetries()
      The number of retries to attempt when downloading the Gradle distribution. If a download fails, the wrapper will attempt to download it again up to the specified number of times.
      Returns:
      The number of retries property.
      Since:
      9.5.0
    • getRetryBackOffMs

      @Input @Incubating @Optional public abstract Property<Integer> getRetryBackOffMs()
      The initial back off in milliseconds to wait between download retries. After a failed download attempt, the wrapper will wait for this amount of time before attempting the next retry, doubling the delay on each subsequent failure.
      Returns:
      The initial retry back off property in milliseconds.
      Since:
      9.5.0
    • getValidateDistributionUrl

      @Incubating @Input public abstract Property<Boolean> getValidateDistributionUrl()
      Indicates if this task will validate the distribution url that has been configured.
      Returns:
      whether this task will validate the distribution url
      Since:
      8.2
    • getFileLookup

      @Inject protected abstract org.gradle.api.internal.file.FileLookup getFileLookup()
    • getFileOperations

      @Inject protected abstract org.gradle.api.internal.file.FileOperations getFileOperations()
    • getObjectFactory

      @Inject protected abstract ObjectFactory getObjectFactory()