gradle-download-task 1.2

The new version of the Gradle plugin gradle-download-task 1.2 has just been released. The plugin provides a Download task that displays progress information while downloading files, just like Gradle does when it fetches an artifact from a repository.

The new version is now also available from the Gradle plugin portal. This allows users of Gradle 2.1 or higher to include gradle-download-task via the new plugin mechanism:

plugins {
    id "de.undercouch.download" version "1.2"
}

Users of Gradle 2.0 or 1.x have to add the following to their build file:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'de.undercouch:gradle-download-task:1.2'
    }
}
 
apply plugin: 'de.undercouch.download'

The plugin’s new version is now also compatible with all stable versions of Gradle. It has been tested with Gradle 1.0 up to 2.2.1 but should be compatible to any other version as well.

Grab gradle-download-task 1.2 while it’s still hot:
https://github.com/michel-kraemer/gradle-download-task

More information

If you want to learn more about the plugin, have a look at its README file or at my previous post.


Profile image of Michel Krämer

Posted by Michel Krämer
on 29 November 2014


Next post

Spamihilator 1.6 has been released!

The new maintenance release 1.6 of the popular anti-spam filter has just been released. In this version, the internal encryption layer has been updated to disable the insecure SSLv2 protocol and to prevent SSLv3 POODLE attacks.

Previous post

bson4jackson 2.4 has just been released!

The latest release of bson4jackson now supports Jackson 2.4. Also, more deserializers have been added and a few minor bugs have been fixed. The update is recommended for all users.

Related posts

10 recipes for gradle-download-task

gradle-download-task is a Gradle plugin that allows you to download files during the build process. This post summarizes common patterns and use cases of gradle-download-task and provides useful tips and tricks.

New features in gradle-download-task 3.4.0

Version 3.4.0 of the popular Gradle plugin contains many new features. Highlights are the support for ETags and downloading to a temporary file. The update also contains various other improvements.

New major version 5.0.0 of gradle-download-task

I’ve just released gradle-download-task 5.0.0. The new version now downloads multiple files in parallel, executes concurrently with other build tasks, and offers better support for Kotlin and Gradle 8.