Add GraphQL Spring Boot starter

This new starter brings the following dependencies:

* the base starter
* the JSON starter
* the Spring GraphQL dependency

See gh-29140
This commit is contained in:
Brian Clozel 2021-12-21 08:34:40 +01:00
parent 8e29eac887
commit d5603f2c98
2 changed files with 12 additions and 0 deletions

View File

@ -1501,6 +1501,7 @@ bom {
"spring-boot-starter-data-neo4j",
"spring-boot-starter-data-rest",
"spring-boot-starter-freemarker",
"spring-boot-starter-graphql",
"spring-boot-starter-groovy-templates",
"spring-boot-starter-hateoas",
"spring-boot-starter-integration",

View File

@ -0,0 +1,11 @@
plugins {
id "org.springframework.boot.starter"
}
description = "Starter for building GraphQL applications with Spring GraphQL"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json"))
api("org.springframework.graphql:spring-graphql")
}