Files
spring-graphql/settings.gradle
Brian Clozel c86ea72b5e Temporarily add SNAPSHOT plugin repository
This is required as otherwise they're deactivated during the staging of
a release. We should reconsider our dependency on Spring Boot SNAPSHOTs
in our samples.
2022-01-19 15:17:44 +01:00

29 lines
657 B
Groovy

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
url 'https://repo.spring.io/release'
}
maven {
url "https://repo.spring.io/snapshot"
}
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'org.springframework.boot') {
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
}
}
}
}
rootProject.name = 'spring-graphql'
include 'spring-graphql',
'spring-graphql-test',
'spring-graphql-docs',
'samples:webmvc-http',
'samples:webmvc-http-security',
'samples:webflux-security',
'samples:webflux-websocket'