Skip to content

Commit

Permalink
Add integration tests for Gradle 6.9.3 and 7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Jan 17, 2023
1 parent a998a54 commit 01f05e0
Show file tree
Hide file tree
Showing 3 changed files with 5 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 7.5.1.
The plugin has been successfully tested with Gradle 5.0 up to 7.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 @@ -27,8 +27,8 @@ ext {
if ("true".equals(System.getenv("CI"))) {
limitedVersionsToTest = [
"5.6.4",
"6.9.2",
"7.5.1"
"6.9.3",
"7.6"
]
} else {
limitedVersionsToTest = versionsToTest
Expand Down
4 changes: 2 additions & 2 deletions gradle/integrationTest.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ ext {
'6.0', '6.0.1', '6.1', '6.1.1', '6.2', '6.2.1', '6.2.2',
'6.3', '6.4', '6.4.1', '6.5', '6.5.1',
'6.6', '6.6.1', '6.7', '6.7.1', '6.8', '6.8.1', '6.8.2', '6.8.3',
'6.9', '6.9.1', '6.9.2',
'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.5', '7.5.1', '7.6'
]
}

Expand Down

0 comments on commit 01f05e0

Please sign in to comment.