This commit merges the common, webmvc and webflux modules into a single web module for supporting GraphQL with all Spring web frameworks. We're working here with optional dependencies to build the support for Spring MVC on one side and Spring WebFlux on the other. Also, this commit updates the starter modules to adopt the official naming convention. For now, starter modules will host both the configuration infrastructure and the transitive dependencies to activate support.
8 lines
233 B
Groovy
8 lines
233 B
Groovy
description = "Starter for building GraphQL Java applications with Spring MVC"
|
|
|
|
dependencies {
|
|
api project(':spring-graphql-web')
|
|
api 'io.projectreactor:reactor-core'
|
|
api 'org.springframework.boot:spring-boot-starter-web'
|
|
}
|