Skip to content

Commit

Permalink
Add integration tests for Gradle versions up to 8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Feb 28, 2024
1 parent 1d1ea79 commit bcbc187
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 8.4.
The plugin has been successfully tested with Gradle 5.0 up to 8.6.
It should work with newer versions as well.

Who’s using gradle-download-task?
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ext {
limitedVersionsToTest = [
"5.6.4",
"6.9.4",
"7.6.3",
"8.4"
"7.6.4",
"8.6"
]
} else {
limitedVersionsToTest = versionsToTest
Expand Down
5 changes: 3 additions & 2 deletions gradle/integrationTest.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ ext {

'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.6.1', '7.6.2', '7.6.3',
'7.5', '7.5.1', '7.6', '7.6.1', '7.6.2', '7.6.3', '7.6.4',

'8.0', '8.0.1', '8.0.2', '8.1', '8.1.1', '8.2', '8.2.1', '8.3', '8.4'
'8.0', '8.0.1', '8.0.2', '8.1', '8.1.1', '8.2', '8.2.1', '8.3', '8.4',
'8.5', '8.6'
]
}

Expand Down

0 comments on commit bcbc187

Please sign in to comment.