Skip to content

Commit d5603f2

Browse files
committed
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
1 parent 8e29eac commit d5603f2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Diff for: spring-boot-project/spring-boot-dependencies/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -1501,6 +1501,7 @@ bom {
15011501
"spring-boot-starter-data-neo4j",
15021502
"spring-boot-starter-data-rest",
15031503
"spring-boot-starter-freemarker",
1504+
"spring-boot-starter-graphql",
15041505
"spring-boot-starter-groovy-templates",
15051506
"spring-boot-starter-hateoas",
15061507
"spring-boot-starter-integration",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
plugins {
2+
id "org.springframework.boot.starter"
3+
}
4+
5+
description = "Starter for building GraphQL applications with Spring GraphQL"
6+
7+
dependencies {
8+
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
9+
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-json"))
10+
api("org.springframework.graphql:spring-graphql")
11+
}

0 commit comments

Comments
 (0)