Skip to content

Commit

Permalink
Update compatibility tests to cover recent Gradle releases
Browse files Browse the repository at this point in the history
Closes gh-357
  • Loading branch information
wilkinsona committed Jul 12, 2023
1 parent 18ecb18 commit 3805bfd
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014-2022 the original author or authors.
* Copyright 2014-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -47,7 +47,8 @@ void pluginIsCompatible(String gradleVersion) {
}

static List<String[]> gradleVersions() {
List<String> versions = Arrays.asList("6.8.3", "6.9.2", "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2");
List<String> versions = Arrays.asList("6.8.3", "6.9.4", "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2", "7.5.1",
"7.6.2", "8.0.2", "8.1.1", "8.2.1");
List<String[]> result = new ArrayList<>();
for (String version : versions) {
result.add(new String[] { version });
Expand Down

0 comments on commit 3805bfd

Please sign in to comment.