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', 'spring-graphql-docs', 'samples:webmvc-http', 'samples:webmvc-http-security', 'samples:webflux-security', 'samples:webflux-websocket'