From 169c29b9a49fce151de3f2c0ee5cc6a3a2002975 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 12 Apr 2022 10:57:09 +0100 Subject: [PATCH] Start building samples against Framework, Data, and HATEOAS snapshots See gh-794 See gh-795 --- samples/junit5/build.gradle | 2 +- samples/rest-assured/build.gradle | 2 +- samples/rest-notes-slate/build.gradle | 4 ++-- samples/rest-notes-spring-data-rest/pom.xml | 4 ++-- samples/rest-notes-spring-hateoas/build.gradle | 6 +++--- samples/testng/build.gradle | 2 +- samples/web-test-client/build.gradle | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/samples/junit5/build.gradle b/samples/junit5/build.gradle index 9439b896..9f0db453 100644 --- a/samples/junit5/build.gradle +++ b/samples/junit5/build.gradle @@ -28,7 +28,7 @@ configurations { dependencies { asciidoctorExtensions "org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion" - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") implementation 'org.springframework:spring-webmvc' testImplementation "org.springframework.restdocs:spring-restdocs-mockmvc:$restdocsVersion" diff --git a/samples/rest-assured/build.gradle b/samples/rest-assured/build.gradle index 40f5ca60..c2563d5b 100644 --- a/samples/rest-assured/build.gradle +++ b/samples/rest-assured/build.gradle @@ -27,7 +27,7 @@ configurations { dependencies { asciidoctorExtensions "org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion" - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") implementation 'io.projectreactor.netty:reactor-netty-http:1.0.15' implementation 'org.springframework:spring-context' implementation 'org.springframework:spring-webflux' diff --git a/samples/rest-notes-slate/build.gradle b/samples/rest-notes-slate/build.gradle index 5952349d..91877add 100644 --- a/samples/rest-notes-slate/build.gradle +++ b/samples/rest-notes-slate/build.gradle @@ -22,8 +22,8 @@ ext { ext['spring-restdocs.version'] = '3.0.0-SNAPSHOT' dependencies { - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") - implementation platform("org.springframework.data:spring-data-bom:2022.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") + implementation platform("org.springframework.data:spring-data-bom:2022.0.0-SNAPSHOT") implementation "com.fasterxml.jackson.core:jackson-databind:2.13.1" implementation "jakarta.servlet:jakarta.servlet-api:5.0.0" implementation "org.hibernate.validator:hibernate-validator:7.0.0.Final" diff --git a/samples/rest-notes-spring-data-rest/pom.xml b/samples/rest-notes-spring-data-rest/pom.xml index 47ba689e..680df8fa 100644 --- a/samples/rest-notes-spring-data-rest/pom.xml +++ b/samples/rest-notes-spring-data-rest/pom.xml @@ -20,14 +20,14 @@ org.springframework spring-framework-bom - 6.0.0-M3 + 6.0.0-SNAPSHOT import pom org.springframework.data spring-data-bom - 2022.0.0-M3 + 2022.0.0-SNAPSHOT import pom diff --git a/samples/rest-notes-spring-hateoas/build.gradle b/samples/rest-notes-spring-hateoas/build.gradle index 58c8e74d..480cef63 100644 --- a/samples/rest-notes-spring-hateoas/build.gradle +++ b/samples/rest-notes-spring-hateoas/build.gradle @@ -27,15 +27,15 @@ configurations { dependencies { asciidoctorExtensions "org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion" - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") - implementation platform("org.springframework.data:spring-data-bom:2022.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") + implementation platform("org.springframework.data:spring-data-bom:2022.0.0-SNAPSHOT") implementation "com.fasterxml.jackson.core:jackson-databind:2.13.1" implementation "jakarta.servlet:jakarta.servlet-api:5.0.0" implementation "org.hibernate.validator:hibernate-validator:7.0.0.Final" implementation "org.hibernate:hibernate-core-jakarta:5.5.7.Final" implementation "org.springframework:spring-webmvc" implementation "org.springframework.data:spring-data-jpa" - implementation "org.springframework.hateoas:spring-hateoas:2.0.0-M2" + implementation "org.springframework.hateoas:spring-hateoas:2.0.0-SNAPSHOT" runtimeOnly 'com.h2database:h2:2.0.206' runtimeOnly 'org.atteo:evo-inflector:1.2.1' diff --git a/samples/testng/build.gradle b/samples/testng/build.gradle index 60f78f1e..bbcddbed 100644 --- a/samples/testng/build.gradle +++ b/samples/testng/build.gradle @@ -28,7 +28,7 @@ configurations { dependencies { asciidoctorExtensions "org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion" - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") implementation "org.springframework:spring-webmvc" testImplementation "org.springframework.restdocs:spring-restdocs-mockmvc:$restdocsVersion" diff --git a/samples/web-test-client/build.gradle b/samples/web-test-client/build.gradle index d83cfa20..95ee6c6c 100644 --- a/samples/web-test-client/build.gradle +++ b/samples/web-test-client/build.gradle @@ -29,7 +29,7 @@ configurations { dependencies { asciidoctorExtensions "org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion" - implementation platform("org.springframework:spring-framework-bom:6.0.0-M3") + implementation platform("org.springframework:spring-framework-bom:6.0.0-SNAPSHOT") implementation 'org.springframework:spring-context' implementation 'org.springframework:spring-webflux'