Skip to content

Commit f827fab

Browse files
Migrate to com.gradle.develocity plugin
Closes gh-250
1 parent c393088 commit f827fab

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ subprojects {
135135
excludeTags 'docker'
136136
}
137137

138-
retry {
138+
develocity.testRetry {
139139
maxFailures = 5
140140
maxRetries = 3
141141
}

settings.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ pluginManagement {
55
}
66

77
plugins {
8-
id 'com.gradle.enterprise' version '3.17.2'
8+
id 'com.gradle.develocity' version '3.17.2'
99
id 'io.spring.ge.conventions' version '0.0.17'
1010
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
1111
}
1212

1313
rootProject.name = 'micrometer-docs-generator'
1414

15-
buildCache {
16-
remote(HttpBuildCache) {
17-
url = 'https://ge.micrometer.io/cache/'
18-
}
19-
}
20-
gradleEnterprise {
15+
develocity {
2116
server = 'https://ge.micrometer.io'
2217
}
2318

24-
include "micrometer-docs-generator"
19+
buildCache {
20+
remote(develocity.buildCache) {
21+
server = 'https://ge.micrometer.io'
22+
}
23+
}
2524

25+
include 'micrometer-docs-generator'

0 commit comments

Comments
 (0)