File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ group = 'com.example'
6
6
description = " GraphQL webflux security example"
7
7
sourceCompatibility = ' 1.8'
8
8
9
- ext[' spring-graphql.version' ] = ' 1.0.0-M6 '
9
+ ext[' spring-graphql.version' ] = version
10
10
11
11
repositories {
12
12
mavenCentral()
@@ -20,8 +20,8 @@ dependencies {
20
20
implementation ' org.springframework.boot:spring-boot-starter-security'
21
21
implementation ' org.springframework.boot:spring-boot-starter-actuator'
22
22
developmentOnly ' org.springframework.boot:spring-boot-devtools'
23
- testImplementation ' org.springframework.graphql :spring-graphql'
24
- testImplementation ' org.springframework.graphql :spring-graphql-test:1.0.0-M6 '
23
+ testImplementation project( ' :spring-graphql' )
24
+ testImplementation project( ' :spring-graphql-test' )
25
25
testImplementation ' org.springframework.boot:spring-boot-starter-test'
26
26
testImplementation ' org.springframework.security:spring-security-test'
27
27
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ group = 'com.example'
6
6
description = " GraphQL over WebSocket With Spring WebFlux Sample"
7
7
sourceCompatibility = ' 1.8'
8
8
9
- ext[' spring-graphql.version' ] = ' 1.0.0-M6 '
9
+ ext[' spring-graphql.version' ] = version
10
10
11
11
repositories {
12
12
mavenCentral()
@@ -19,8 +19,8 @@ dependencies {
19
19
implementation ' org.springframework.boot:spring-boot-starter-webflux'
20
20
implementation ' org.springframework.boot:spring-boot-starter-actuator'
21
21
developmentOnly ' org.springframework.boot:spring-boot-devtools'
22
- testImplementation ' org.springframework.graphql :spring-graphql'
23
- testImplementation ' org.springframework.graphql :spring-graphql-test:1.0.0-M6 '
22
+ testImplementation project( ' :spring-graphql' )
23
+ testImplementation project( ' :spring-graphql-test' )
24
24
testImplementation ' org.springframework.boot:spring-boot-starter-test'
25
25
testImplementation ' io.projectreactor:reactor-test'
26
26
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ group = 'com.example'
6
6
description = " Secure GraphQL over HTTP with Spring MVC Sample"
7
7
sourceCompatibility = ' 1.8'
8
8
9
- ext[' spring-graphql.version' ] = ' 1.0.0-M6 '
9
+ ext[' spring-graphql.version' ] = version
10
10
11
11
repositories {
12
12
mavenCentral()
@@ -20,8 +20,8 @@ dependencies {
20
20
implementation ' org.springframework.boot:spring-boot-starter-security'
21
21
implementation ' org.springframework.boot:spring-boot-starter-actuator'
22
22
developmentOnly ' org.springframework.boot:spring-boot-devtools'
23
- testImplementation ' org.springframework.graphql :spring-graphql'
24
- testImplementation ' org.springframework.graphql :spring-graphql-test:1.0.0-M6 '
23
+ testImplementation project( ' :spring-graphql' )
24
+ testImplementation project( ' :spring-graphql-test' )
25
25
testImplementation ' org.springframework:spring-webflux'
26
26
testImplementation ' org.springframework.boot:spring-boot-starter-test'
27
27
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ group = 'com.example'
6
6
description = " GraphQL over HTTP with Spring MVC Sample"
7
7
sourceCompatibility = ' 1.8'
8
8
9
- ext[' spring-graphql.version' ] = ' 1.0.0-M6 '
9
+ ext[' spring-graphql.version' ] = version
10
10
11
11
repositories {
12
12
mavenCentral()
@@ -24,8 +24,8 @@ dependencies {
24
24
implementation ' com.querydsl:querydsl-jpa'
25
25
developmentOnly ' org.springframework.boot:spring-boot-devtools'
26
26
runtimeOnly ' com.h2database:h2'
27
- testImplementation ' org.springframework.graphql :spring-graphql'
28
- testImplementation ' org.springframework.graphql :spring-graphql-test:1.0.0-M6 '
27
+ testImplementation project( ' :spring-graphql' )
28
+ testImplementation project( ' :spring-graphql-test' )
29
29
testImplementation ' org.springframework:spring-webflux'
30
30
testImplementation ' org.springframework.boot:spring-boot-starter-test'
31
31
You can’t perform that action at this time.
0 commit comments