File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 8
8
moduleProjects = [project(" :spring-graphql" ), project(" :spring-graphql-test" )]
9
9
springFrameworkVersion = " 7.0.0-M8"
10
10
graphQlJavaVersion = " 25.0.beta-5"
11
- springBootVersion = " 4.0.0-M1"
12
11
}
13
12
14
13
subprojects {
@@ -20,8 +19,7 @@ subprojects {
20
19
ext. javadocLinks = [
21
20
" https://docs.oracle.com/en/java/javase/17/docs/api/" ,
22
21
" https://javadoc.io/doc/com.graphql-java/graphql-java/${ graphQlJavaVersion} /" ,
23
- " https://docs.spring.io/spring-framework/docs/${ springFrameworkVersion} /javadoc-api/" ,
24
- " https://docs.spring.io/spring-boot/${ springBootVersion} /api/java/" ,
22
+ " https://docs.spring.io/spring-framework/docs/${ springFrameworkVersion} /javadoc-api/"
25
23
] as String []
26
24
27
25
repositories {
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ configurations {
15
15
matching { it. name. endsWith(" Classpath" ) }. all { it. extendsFrom(dependencyManagement) }
16
16
}
17
17
18
+ def springBootVersion = " 4.0.0-M1"
19
+
18
20
dependencies {
19
21
dependencyManagement(enforcedPlatform(dependencies. project(path : " :platform" )))
20
22
api project(' :spring-graphql' )
@@ -25,7 +27,9 @@ dependencies {
25
27
implementation ' org.springframework:spring-messaging'
26
28
implementation ' org.springframework.data:spring-data-commons'
27
29
implementation ' com.querydsl:querydsl-core'
28
- implementation " org.springframework.boot:spring-boot-starter-graphql:${ springBootVersion} "
30
+ implementation (" org.springframework.boot:spring-boot-graphql:${ springBootVersion} " ) {
31
+ exclude group : ' org.springframework.graphql'
32
+ }
29
33
implementation " org.springframework.boot:spring-boot-starter-web:${ springBootVersion} "
30
34
implementation ' tools.jackson.core:jackson-databind'
31
35
implementation ' io.rsocket:rsocket-core'
You can’t perform that action at this time.
0 commit comments