This commit adds a sample application to the repository. This application should not be published as part of the build. In this application, we're trying to showcase the various features and use cases with our Spring graphQL integration. We're mixing here data fetchers backed by datastores or remote hypermedia APIs. Closes gh-15
19 lines
521 B
Groovy
19 lines
521 B
Groovy
pluginManagement {
|
|
repositories {
|
|
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-web'
|
|
include 'graphql-sample'
|