File tree 7 files changed +25
-9
lines changed
rest-notes-spring-data-rest
rest-notes-spring-hateoas
7 files changed +25
-9
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ allprojects {
9
9
repositories {
10
10
mavenLocal()
11
11
mavenCentral()
12
+ maven { url " https://repo.spring.io/milestone" }
12
13
maven { url " https://repo.spring.io/snapshot" }
13
14
}
14
15
}
@@ -25,7 +26,7 @@ nohttp {
25
26
}
26
27
27
28
ext {
28
- springFrameworkVersion = " 6.0.0-SNAPSHOT "
29
+ springFrameworkVersion = " 6.0.0-M2 "
29
30
javadocLinks = [
30
31
" https://docs.oracle.com/javase/8/docs/api/" ,
31
32
" https://docs.spring.io/spring-framework/docs/$springFrameworkVersion /javadoc-api/" ,
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ configurations {
28
28
dependencies {
29
29
asciidoctorExtensions " org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion "
30
30
31
- implementation ' org.springframework:spring-webmvc:6.0.0-M1'
31
+ implementation platform(" org.springframework:spring-framework-bom:6.0.0-M2" )
32
+ implementation ' org.springframework:spring-webmvc'
32
33
33
34
testImplementation " org.springframework.restdocs:spring-restdocs-mockmvc:$restdocsVersion "
34
35
testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.0'
Original file line number Diff line number Diff line change @@ -22,11 +22,12 @@ ext {
22
22
ext[' spring-restdocs.version' ] = ' 3.0.0-SNAPSHOT'
23
23
24
24
dependencies {
25
+ implementation platform(" org.springframework:spring-framework-bom:6.0.0-M2" )
25
26
implementation " com.fasterxml.jackson.core:jackson-databind:2.13.1"
26
27
implementation " jakarta.servlet:jakarta.servlet-api:5.0.0"
27
28
implementation " org.hibernate.validator:hibernate-validator:7.0.0.Final"
28
29
implementation " org.hibernate:hibernate-core-jakarta:5.5.7.Final"
29
- implementation " org.springframework:spring-webmvc:6.0.0-SNAPSHOT "
30
+ implementation " org.springframework:spring-webmvc"
30
31
implementation " org.springframework.data:spring-data-jpa:3.0.0-SNAPSHOT"
31
32
implementation " org.springframework.data:spring-data-rest-webmvc:4.0.0-SNAPSHOT"
32
33
Original file line number Diff line number Diff line change 15
15
<restdocs .version>3.0.0-SNAPSHOT</restdocs .version>
16
16
</properties >
17
17
18
+ <dependencyManagement >
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >org.springframework</groupId >
22
+ <artifactId >spring-framework-bom</artifactId >
23
+ <version >6.0.0-M2</version >
24
+ <scope >import</scope >
25
+ <type >pom</type >
26
+ </dependency >
27
+ </dependencies >
28
+ </dependencyManagement >
29
+
18
30
<dependencies >
19
31
<dependency >
20
32
<groupId >com.fasterxml.jackson.core</groupId >
39
51
<dependency >
40
52
<groupId >org.springframework</groupId >
41
53
<artifactId >spring-webmvc</artifactId >
42
- <version >6.0.0-SNAPSHOT</version >
43
54
</dependency >
44
55
<dependency >
45
56
<groupId >org.springframework.data</groupId >
Original file line number Diff line number Diff line change @@ -27,11 +27,12 @@ configurations {
27
27
dependencies {
28
28
asciidoctorExtensions " org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion "
29
29
30
+ implementation platform(" org.springframework:spring-framework-bom:6.0.0-M2" )
30
31
implementation " com.fasterxml.jackson.core:jackson-databind:2.13.1"
31
32
implementation " jakarta.servlet:jakarta.servlet-api:5.0.0"
32
33
implementation " org.hibernate.validator:hibernate-validator:7.0.0.Final"
33
34
implementation " org.hibernate:hibernate-core-jakarta:5.5.7.Final"
34
- implementation " org.springframework:spring-webmvc:6.0.0-SNAPSHOT "
35
+ implementation " org.springframework:spring-webmvc"
35
36
implementation " org.springframework.data:spring-data-jpa:3.0.0-SNAPSHOT"
36
37
implementation " org.springframework.hateoas:spring-hateoas:2.0.0-SNAPSHOT"
37
38
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ configurations {
28
28
dependencies {
29
29
asciidoctorExtensions " org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion "
30
30
31
- implementation " org.springframework:spring-webmvc:6.0.0-M1"
31
+ implementation platform(" org.springframework:spring-framework-bom:6.0.0-M2" )
32
+ implementation " org.springframework:spring-webmvc"
32
33
33
34
testImplementation " org.springframework.restdocs:spring-restdocs-mockmvc:$restdocsVersion "
34
35
testImplementation " org.testng:testng:6.9.10"
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ configurations {
29
29
dependencies {
30
30
asciidoctorExtensions " org.springframework.restdocs:spring-restdocs-asciidoctor:$restdocsVersion "
31
31
32
- implementation ' org.springframework:spring-context:6.0.0-M1'
33
- implementation ' org.springframework:spring-webflux:6.0.0-M1'
32
+ implementation platform(" org.springframework:spring-framework-bom:6.0.0-M2" )
33
+ implementation ' org.springframework:spring-context'
34
+ implementation ' org.springframework:spring-webflux'
34
35
35
36
testImplementation ' junit:junit:4.13.1'
36
- testImplementation ' org.springframework:spring-test:6.0.0-M1'
37
37
testImplementation " org.springframework.restdocs:spring-restdocs-webtestclient:$restdocsVersion "
38
38
}
39
39
You can’t perform that action at this time.
0 commit comments