This should have been removed when we upgraded to "io.spring.develocity.conventions:0.0.22". I suspect this is the reason we are not getting build scan URLs in GitHub action runs anymore.
25 lines
515 B
Groovy
25 lines
515 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == 'org.springframework.boot') {
|
|
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "io.spring.develocity.conventions" version "0.0.22"
|
|
}
|
|
|
|
rootProject.name = 'spring-graphql'
|
|
include 'platform',
|
|
'spring-graphql',
|
|
'spring-graphql-test',
|
|
'spring-graphql-docs'
|
|
|