From 3805bfd51c5aae62d33482fd39e5a3704950e9d8 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 12 Jul 2023 13:21:06 +0100 Subject: [PATCH] Update compatibility tests to cover recent Gradle releases Closes gh-357 --- .../GradleVersionCompatibilityIntegrationTests.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/java/io/spring/gradle/dependencymanagement/GradleVersionCompatibilityIntegrationTests.java b/src/test/java/io/spring/gradle/dependencymanagement/GradleVersionCompatibilityIntegrationTests.java index 6d59194..ad24daf 100644 --- a/src/test/java/io/spring/gradle/dependencymanagement/GradleVersionCompatibilityIntegrationTests.java +++ b/src/test/java/io/spring/gradle/dependencymanagement/GradleVersionCompatibilityIntegrationTests.java @@ -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. @@ -47,7 +47,8 @@ void pluginIsCompatible(String gradleVersion) { } static List gradleVersions() { - List versions = Arrays.asList("6.8.3", "6.9.2", "7.0.2", "7.1.1", "7.2", "7.3.3", "7.4.2"); + List 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 result = new ArrayList<>(); for (String version : versions) { result.add(new String[] { version });