Files
spring-graphql/settings.gradle
Rossen Stoyanchev b6cc9e4dd5 Remove spring-graphql-core module
Move its contents into the spring-graphql module.
2021-04-26 21:55:30 +01:00

23 lines
657 B
Groovy

pluginManagement {
repositories {
maven { url 'https://repo.spring.io/release' }
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
gradlePluginPortal()
}
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',
'graphql-spring-boot-starter',
'samples:webmvc-http',
'samples:webflux-websocket'