diff --git a/README.md b/README.md index 512ec43..32d1e0b 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ First, apply the plugin configuration: ```groovy plugins { - id "de.undercouch.download" version "5.5.0" + id "de.undercouch.download" version "5.6.0" } ``` @@ -184,8 +184,8 @@ plugin with Gradle's built-in support for ZIP files: ```groovy task downloadZipFile(type: Download) { - src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.5.0.zip' - dest layout.buildDirectory.file('5.5.0.zip') + src 'https://github.com/michel-kraemer/gradle-download-task/archive/refs/tags/5.6.0.zip' + dest layout.buildDirectory.file('5.6.0.zip') } task downloadAndUnzipFile(dependsOn: downloadZipFile, type: Copy) { diff --git a/build.gradle b/build.gradle index 157b085..63ef521 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ apply plugin: 'signing' apply from: "gradle/integrationTest.gradle" group = 'de.undercouch' -version = '5.6.0-SNAPSHOT' +version = '5.6.0' java { sourceCompatibility = '1.8' diff --git a/examples/groovy/custom-header/build.gradle b/examples/groovy/custom-header/build.gradle index 4358926..16137f7 100644 --- a/examples/groovy/custom-header/build.gradle +++ b/examples/groovy/custom-header/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/directory-github/build.gradle b/examples/groovy/directory-github/build.gradle index cecd844..90f4994 100644 --- a/examples/groovy/directory-github/build.gradle +++ b/examples/groovy/directory-github/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/directory/build.gradle b/examples/groovy/directory/build.gradle index ce1509b..b4214b3 100644 --- a/examples/groovy/directory/build.gradle +++ b/examples/groovy/directory/build.gradle @@ -15,7 +15,7 @@ buildscript { * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/etag/build.gradle b/examples/groovy/etag/build.gradle index b0f3f46..b0fe07c 100644 --- a/examples/groovy/etag/build.gradle +++ b/examples/groovy/etag/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/lazy-src-and-dest/build.gradle b/examples/groovy/lazy-src-and-dest/build.gradle index 22a469b..902ee37 100644 --- a/examples/groovy/lazy-src-and-dest/build.gradle +++ b/examples/groovy/lazy-src-and-dest/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } ext { diff --git a/examples/groovy/mirrors/build.gradle b/examples/groovy/mirrors/build.gradle index cfaaa06..2019847 100644 --- a/examples/groovy/mirrors/build.gradle +++ b/examples/groovy/mirrors/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/multiple-files-rename/build.gradle b/examples/groovy/multiple-files-rename/build.gradle index 5f4d9a8..0af9e42 100644 --- a/examples/groovy/multiple-files-rename/build.gradle +++ b/examples/groovy/multiple-files-rename/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/multiple-files/build.gradle b/examples/groovy/multiple-files/build.gradle index 3339008..0091d82 100644 --- a/examples/groovy/multiple-files/build.gradle +++ b/examples/groovy/multiple-files/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/simple-extension/build.gradle b/examples/groovy/simple-extension/build.gradle index 7ac8993..65e41be 100644 --- a/examples/groovy/simple-extension/build.gradle +++ b/examples/groovy/simple-extension/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/simple/build.gradle b/examples/groovy/simple/build.gradle index 3b5f64d..1e8974e 100644 --- a/examples/groovy/simple/build.gradle +++ b/examples/groovy/simple/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/temp-rename/build.gradle b/examples/groovy/temp-rename/build.gradle index b23e2ac..aca2b79 100644 --- a/examples/groovy/temp-rename/build.gradle +++ b/examples/groovy/temp-rename/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/unzip/build.gradle b/examples/groovy/unzip/build.gradle index 852217b..b5cf7a9 100644 --- a/examples/groovy/unzip/build.gradle +++ b/examples/groovy/unzip/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/verify-extension/build.gradle b/examples/groovy/verify-extension/build.gradle index 1946a6c..f2f6539 100644 --- a/examples/groovy/verify-extension/build.gradle +++ b/examples/groovy/verify-extension/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/groovy/verify/build.gradle b/examples/groovy/verify/build.gradle index 5f12294..7bd992c 100644 --- a/examples/groovy/verify/build.gradle +++ b/examples/groovy/verify/build.gradle @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id 'de.undercouch.download' version '5.5.0' + id 'de.undercouch.download' version '5.6.0' } /** diff --git a/examples/kotlin/custom-header/build.gradle.kts b/examples/kotlin/custom-header/build.gradle.kts index 2255db1..0d28c13 100644 --- a/examples/kotlin/custom-header/build.gradle.kts +++ b/examples/kotlin/custom-header/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/directory-github/build.gradle.kts b/examples/kotlin/directory-github/build.gradle.kts index e209d94..207147f 100644 --- a/examples/kotlin/directory-github/build.gradle.kts +++ b/examples/kotlin/directory-github/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } /** diff --git a/examples/kotlin/directory/build.gradle.kts b/examples/kotlin/directory/build.gradle.kts index aa6af1f..af0fee1 100644 --- a/examples/kotlin/directory/build.gradle.kts +++ b/examples/kotlin/directory/build.gradle.kts @@ -15,7 +15,7 @@ buildscript { * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/etag/build.gradle.kts b/examples/kotlin/etag/build.gradle.kts index b80c30a..6ad5264 100644 --- a/examples/kotlin/etag/build.gradle.kts +++ b/examples/kotlin/etag/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/lazy-src-and-dest/build.gradle.kts b/examples/kotlin/lazy-src-and-dest/build.gradle.kts index b84cec9..68ce8d7 100644 --- a/examples/kotlin/lazy-src-and-dest/build.gradle.kts +++ b/examples/kotlin/lazy-src-and-dest/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import java.nio.file.Files diff --git a/examples/kotlin/mirrors/build.gradle.kts b/examples/kotlin/mirrors/build.gradle.kts index 69e5879..02d2fa7 100644 --- a/examples/kotlin/mirrors/build.gradle.kts +++ b/examples/kotlin/mirrors/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } /** diff --git a/examples/kotlin/multiple-files-rename/build.gradle.kts b/examples/kotlin/multiple-files-rename/build.gradle.kts index f752443..9443130 100644 --- a/examples/kotlin/multiple-files-rename/build.gradle.kts +++ b/examples/kotlin/multiple-files-rename/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/multiple-files/build.gradle.kts b/examples/kotlin/multiple-files/build.gradle.kts index 5d8bbb6..29a1e97 100644 --- a/examples/kotlin/multiple-files/build.gradle.kts +++ b/examples/kotlin/multiple-files/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/simple-extension/build.gradle.kts b/examples/kotlin/simple-extension/build.gradle.kts index 0606d53..7a14900 100644 --- a/examples/kotlin/simple-extension/build.gradle.kts +++ b/examples/kotlin/simple-extension/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/simple/build.gradle.kts b/examples/kotlin/simple/build.gradle.kts index 630d23a..2c2b594 100644 --- a/examples/kotlin/simple/build.gradle.kts +++ b/examples/kotlin/simple/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/temp-rename/build.gradle.kts b/examples/kotlin/temp-rename/build.gradle.kts index b03fb33..0e4d48b 100644 --- a/examples/kotlin/temp-rename/build.gradle.kts +++ b/examples/kotlin/temp-rename/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/unzip/build.gradle.kts b/examples/kotlin/unzip/build.gradle.kts index 4cf4715..79ddb84 100644 --- a/examples/kotlin/unzip/build.gradle.kts +++ b/examples/kotlin/unzip/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download diff --git a/examples/kotlin/verify-extension/build.gradle.kts b/examples/kotlin/verify-extension/build.gradle.kts index f4eee46..0e1e0cb 100644 --- a/examples/kotlin/verify-extension/build.gradle.kts +++ b/examples/kotlin/verify-extension/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } /** diff --git a/examples/kotlin/verify/build.gradle.kts b/examples/kotlin/verify/build.gradle.kts index f5c9c8f..45f25f7 100644 --- a/examples/kotlin/verify/build.gradle.kts +++ b/examples/kotlin/verify/build.gradle.kts @@ -2,7 +2,7 @@ * Include the gradle-download-task plugin */ plugins { - id("de.undercouch.download") version "5.5.0" + id("de.undercouch.download") version "5.6.0" } import de.undercouch.gradle.tasks.download.Download