Skip to content

Commit

Permalink
Upgrade to Gradle 8.5 RC1
Browse files Browse the repository at this point in the history
See gh-96
  • Loading branch information
ciscoo committed Nov 13, 2023
1 parent cce8459 commit 22c8227
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ void configurationCacheCompatibility(GradleBuild gradleBuild) {
BuildResult initialResult = runner.build();
BuildResult finalResult = runner.build();

assertThat(initialResult.getOutput()).contains("no configuration cache is available");
assertThat(initialResult.getOutput()).satisfiesAnyOf(
output -> assertThat(output).contains("no configuration cache is available"),
output -> assertThat(output).contains("no cached configuration is available"));
assertThat(finalResult.getOutput()).contains("Reusing configuration cache.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public final class GradleCompatibilityExtension implements TestTemplateInvocationContextProvider {

private static final List<String> GRADLE_8_VERSIONS = List.of("8.2.1", "8.3", "current");
private static final List<String> GRADLE_8_VERSIONS = List.of("8.3", "8.4", "current");

private static final List<String> DEFAULT_GRADLE_VERSIONS;

Expand Down
2 changes: 1 addition & 1 deletion documentation/src/docs/asciidoc/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ The CXF Codegen Gradle plugin supports the following Gradle versions:
| Gradle 8

a|
- 8.2.1
- 8.3
- 8.4
- {current-gradle-version}
|===

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-rc-1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 22c8227

Please sign in to comment.