Skip to content

Commit e5e1575

Browse files
committed
Add dependency management for Spring GraphQL
This commit adds dependency management in Spring Boot for Spring GraphQL and GraphQL Java. See gh-29140
1 parent 29ad847 commit e5e1575

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

+15
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,13 @@ bom {
372372
]
373373
}
374374
}
375+
library("GraphQL Java", "17.3") {
376+
group("com.graphql-java") {
377+
modules = [
378+
"graphql-java"
379+
]
380+
}
381+
}
375382
library("Groovy", "3.0.9") {
376383
group("org.codehaus.groovy") {
377384
imports = [
@@ -1655,6 +1662,14 @@ bom {
16551662
]
16561663
}
16571664
}
1665+
library("Spring GraphQL", "1.0.0-SNAPSHOT") {
1666+
group("org.springframework.graphql") {
1667+
modules = [
1668+
"spring-graphql",
1669+
"spring-graphql-test"
1670+
]
1671+
}
1672+
}
16581673
library("Spring HATEOAS", "1.4.0") {
16591674
group("org.springframework.hateoas") {
16601675
modules = [

0 commit comments

Comments
 (0)