Skip to content

Commit 27f485d

Browse files
committed
Revert "Pin samples to 1.0.0-M6"
1 parent c4f9171 commit 27f485d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

samples/webflux-security/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ group = 'com.example'
66
description = "GraphQL webflux security example"
77
sourceCompatibility = '1.8'
88

9-
ext['spring-graphql.version'] = '1.0.0-M6'
9+
ext['spring-graphql.version'] = version
1010

1111
repositories {
1212
mavenCentral()
@@ -20,8 +20,8 @@ dependencies {
2020
implementation 'org.springframework.boot:spring-boot-starter-security'
2121
implementation 'org.springframework.boot:spring-boot-starter-actuator'
2222
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')
2525
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2626
testImplementation 'org.springframework.security:spring-security-test'
2727
}

samples/webflux-websocket/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ group = 'com.example'
66
description = "GraphQL over WebSocket With Spring WebFlux Sample"
77
sourceCompatibility = '1.8'
88

9-
ext['spring-graphql.version'] = '1.0.0-M6'
9+
ext['spring-graphql.version'] = version
1010

1111
repositories {
1212
mavenCentral()
@@ -19,8 +19,8 @@ dependencies {
1919
implementation 'org.springframework.boot:spring-boot-starter-webflux'
2020
implementation 'org.springframework.boot:spring-boot-starter-actuator'
2121
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')
2424
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2525
testImplementation 'io.projectreactor:reactor-test'
2626
}

samples/webmvc-http-security/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ group = 'com.example'
66
description = "Secure GraphQL over HTTP with Spring MVC Sample"
77
sourceCompatibility = '1.8'
88

9-
ext['spring-graphql.version'] = '1.0.0-M6'
9+
ext['spring-graphql.version'] = version
1010

1111
repositories {
1212
mavenCentral()
@@ -20,8 +20,8 @@ dependencies {
2020
implementation 'org.springframework.boot:spring-boot-starter-security'
2121
implementation 'org.springframework.boot:spring-boot-starter-actuator'
2222
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')
2525
testImplementation 'org.springframework:spring-webflux'
2626
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2727
}

samples/webmvc-http/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ group = 'com.example'
66
description = "GraphQL over HTTP with Spring MVC Sample"
77
sourceCompatibility = '1.8'
88

9-
ext['spring-graphql.version'] = '1.0.0-M6'
9+
ext['spring-graphql.version'] = version
1010

1111
repositories {
1212
mavenCentral()
@@ -24,8 +24,8 @@ dependencies {
2424
implementation 'com.querydsl:querydsl-jpa'
2525
developmentOnly 'org.springframework.boot:spring-boot-devtools'
2626
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')
2929
testImplementation 'org.springframework:spring-webflux'
3030
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3131

0 commit comments

Comments
 (0)