diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 0866de0d..02d1503c 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -50,7 +50,7 @@ jobs: strategy: matrix: - version: ["5", "6\\\\.[0-5]", "6\\\\.[6-9]", "7"] + version: ["5", "6\\\\.[0-5]", "6\\\\.[6-9]", "7", "8"] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 440c6102..c932caaa 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ It **displays progress information** just like Gradle does when it retrieves an artifact from a repository. It is also able to **download multiple files in parallel** and supports **concurrent execution** with other tasks. -The plugin has been successfully tested with Gradle 5.0 up to 7.6. +The plugin has been successfully tested with Gradle 5.0 up to 8.0.1. It should work with newer versions as well. Who’s using gradle-download-task? diff --git a/build.gradle b/build.gradle index 4379ea81..afbfad67 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,8 @@ ext { limitedVersionsToTest = [ "5.6.4", "6.9.3", - "7.6" + "7.6", + "8.0.1" ] } else { limitedVersionsToTest = versionsToTest diff --git a/gradle/integrationTest.gradle b/gradle/integrationTest.gradle index 18979846..f657d66b 100644 --- a/gradle/integrationTest.gradle +++ b/gradle/integrationTest.gradle @@ -28,7 +28,8 @@ ext { '6.9', '6.9.1', '6.9.2', '6.9.3', '7.0', '7.0.1', '7.0.2', '7.1', '7.1.1', '7.2', '7.3', '7.3.1', '7.3.2', '7.3.3', '7.4', '7.4.1', '7.4.2', - '7.5', '7.5.1', '7.6' + '7.5', '7.5.1', '7.6', + '8.0', '8.0.1' ] }