The GraphQL Spring Boot starters aren't actually necessary. The typical GraphQL usage is really tied to the type of web application you're building: Spring MVC or WebFlux. Adding the `spring-graphql-web` dependency to the classpath is a signal strong enough that we can configure additional endpoints into the web application. Closes gh-17
12 lines
227 B
Groovy
12 lines
227 B
Groovy
|
|
subprojects {
|
|
group = 'org.springframework.experimental'
|
|
version = "0.1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
}
|
|
}
|