Browse Source

Upgrade Gradle Enterprise & Conventions plugins

pull/29796/head
Brian Clozel 3 years ago
parent
commit
a516ed8739
  1. 3
      buildSrc/src/main/java/org/springframework/build/TestConventions.java
  2. 4
      settings.gradle

3
buildSrc/src/main/java/org/springframework/build/TestConventions.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-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.
@ -40,7 +40,6 @@ class TestConventions { @@ -40,7 +40,6 @@ class TestConventions {
}
private void configureTestConventions(Project project) {
project.getPlugins().apply(TestRetryPlugin.class);
project.getTasks().withType(Test.class,
(test) -> project.getPlugins().withType(TestRetryPlugin.class, (testRetryPlugin) -> {
TestRetryTaskExtension testRetry = test.getExtensions().getByType(TestRetryTaskExtension.class);

4
settings.gradle

@ -7,8 +7,8 @@ pluginManagement { @@ -7,8 +7,8 @@ pluginManagement {
}
plugins {
id "com.gradle.enterprise" version "3.11.1"
id "io.spring.ge.conventions" version "0.0.11"
id "com.gradle.enterprise" version "3.12.1"
id "io.spring.ge.conventions" version "0.0.13"
}
include "spring-aop"

Loading…
Cancel
Save