diff --git a/samples/webflux-security/build.gradle b/samples/webflux-security/build.gradle index 8d3fda42..ad265446 100644 --- a/samples/webflux-security/build.gradle +++ b/samples/webflux-security/build.gradle @@ -6,7 +6,7 @@ group = 'com.example' description = "GraphQL webflux security example" sourceCompatibility = '1.8' -ext['spring-graphql.version'] = version +ext['spring-graphql.version'] = '1.0.0-M6' repositories { mavenCentral() @@ -20,8 +20,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-actuator' developmentOnly 'org.springframework.boot:spring-boot-devtools' - testImplementation project(':spring-graphql') - testImplementation project(':spring-graphql-test') + testImplementation 'org.springframework.graphql:spring-graphql' + testImplementation 'org.springframework.graphql:spring-graphql-test:1.0.0-M6' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' } diff --git a/samples/webflux-websocket/build.gradle b/samples/webflux-websocket/build.gradle index ad6de4eb..aebe68f7 100644 --- a/samples/webflux-websocket/build.gradle +++ b/samples/webflux-websocket/build.gradle @@ -6,7 +6,7 @@ group = 'com.example' description = "GraphQL over WebSocket With Spring WebFlux Sample" sourceCompatibility = '1.8' -ext['spring-graphql.version'] = version +ext['spring-graphql.version'] = '1.0.0-M6' repositories { mavenCentral() @@ -19,8 +19,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.boot:spring-boot-starter-actuator' developmentOnly 'org.springframework.boot:spring-boot-devtools' - testImplementation project(':spring-graphql') - testImplementation project(':spring-graphql-test') + testImplementation 'org.springframework.graphql:spring-graphql' + testImplementation 'org.springframework.graphql:spring-graphql-test:1.0.0-M6' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'io.projectreactor:reactor-test' } diff --git a/samples/webmvc-http-security/build.gradle b/samples/webmvc-http-security/build.gradle index fbc4641a..345a349d 100644 --- a/samples/webmvc-http-security/build.gradle +++ b/samples/webmvc-http-security/build.gradle @@ -6,7 +6,7 @@ group = 'com.example' description = "Secure GraphQL over HTTP with Spring MVC Sample" sourceCompatibility = '1.8' -ext['spring-graphql.version'] = version +ext['spring-graphql.version'] = '1.0.0-M6' repositories { mavenCentral() @@ -20,8 +20,8 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-actuator' developmentOnly 'org.springframework.boot:spring-boot-devtools' - testImplementation project(':spring-graphql') - testImplementation project(':spring-graphql-test') + testImplementation 'org.springframework.graphql:spring-graphql' + testImplementation 'org.springframework.graphql:spring-graphql-test:1.0.0-M6' testImplementation 'org.springframework:spring-webflux' testImplementation 'org.springframework.boot:spring-boot-starter-test' } diff --git a/samples/webmvc-http/build.gradle b/samples/webmvc-http/build.gradle index e9cceb31..a753d44d 100644 --- a/samples/webmvc-http/build.gradle +++ b/samples/webmvc-http/build.gradle @@ -6,7 +6,7 @@ group = 'com.example' description = "GraphQL over HTTP with Spring MVC Sample" sourceCompatibility = '1.8' -ext['spring-graphql.version'] = version +ext['spring-graphql.version'] = '1.0.0-M6' repositories { mavenCentral() @@ -24,8 +24,8 @@ dependencies { implementation 'com.querydsl:querydsl-jpa' developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'com.h2database:h2' - testImplementation project(':spring-graphql') - testImplementation project(':spring-graphql-test') + testImplementation 'org.springframework.graphql:spring-graphql' + testImplementation 'org.springframework.graphql:spring-graphql-test:1.0.0-M6' testImplementation 'org.springframework:spring-webflux' testImplementation 'org.springframework.boot:spring-boot-starter-test'