mirror of
https://gitee.com/dcren/initializr.git
synced 2025-04-24 18:04:58 +08:00
Upgrade reactive starter to reactor 3.0.3.RELEASE
This commit is contained in:
parent
2c8c1699fe
commit
0b21f63cc2
@ -23,7 +23,7 @@ class ReactiveProjectRequestPostProcessor extends ProjectRequestPostProcessorAda
|
||||
|
||||
// No need to override those versions with Gradle
|
||||
if ('maven'.equals(request.build)) {
|
||||
request.buildProperties.versions['reactor.version'] = { '3.0.3.BUILD-SNAPSHOT' }
|
||||
request.buildProperties.versions['reactor.version'] = { '3.0.3.RELEASE' }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -55,7 +55,7 @@ class ReactiveProjectRequestPostProcessorTests {
|
||||
ProjectRequest request = createProjectRequest('experimental-web-reactive')
|
||||
request.bootVersion = '2.0.0.BUILD-SNAPSHOT'
|
||||
generateMavenPom(request)
|
||||
.hasProperty('reactor.version', '3.0.3.BUILD-SNAPSHOT')
|
||||
.hasProperty('reactor.version', '3.0.3.RELEASE')
|
||||
}
|
||||
|
||||
@Test
|
||||
@ -64,7 +64,7 @@ class ReactiveProjectRequestPostProcessorTests {
|
||||
request.bootVersion = '2.0.0.BUILD-SNAPSHOT'
|
||||
generateGradleBuild(request)
|
||||
.doesNotContain("ext['spring.version'] = '5.0.0.BUILD-SNAPSHOT'")
|
||||
.doesNotContain("ext['reactor.version'] = '3.0.3.BUILD-SNAPSHOT'")
|
||||
.doesNotContain("ext['reactor.version'] = '3.0.3.RELEASE'")
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user