File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
test/java/io/spring/start/site/extension/dependency/testcontainers Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,9 @@ initializr:
113
113
additionalBoms : [ spring-cloud ]
114
114
mappings :
115
115
- compatibilityRange : " [3.3.0,3.4.0-M1)"
116
- version : 5.10.0
116
+ version : 5.11.0
117
+ - compatibilityRange : " [3.4.0,3.5.0-M1)"
118
+ version : 6.0.0
117
119
spring-cloud-services :
118
120
groupId : io.pivotal.spring.cloud
119
121
artifactId : spring-cloud-services-dependencies
@@ -1425,7 +1427,7 @@ initializr:
1425
1427
description : Azure Storage Sample
1426
1428
- name : Google Cloud
1427
1429
bom : spring-cloud-gcp
1428
- compatibilityRange : " [3.3.0,3.4 .0-M1)"
1430
+ compatibilityRange : " [3.3.0,3.5 .0-M1)"
1429
1431
content :
1430
1432
- name : Google Cloud Support
1431
1433
id : cloud-gcp
Original file line number Diff line number Diff line change @@ -416,21 +416,21 @@ fun contextLoads() {
416
416
@ Test
417
417
void shouldAddHelpSection () {
418
418
assertHelpDocument ("testcontainers" , "data-mongodb" , "postgresql" ).contains (
419
- "https://docs.spring.io/spring-boot/3.3 .0/reference/testing/testcontainers.html#testing.testcontainers" )
419
+ "https://docs.spring.io/spring-boot/3.4 .0/reference/testing/testcontainers.html#testing.testcontainers" )
420
420
.contains (
421
- "https://docs.spring.io/spring-boot/3.3 .0/reference/features/dev-services.html#features.dev-services.testcontainers" )
421
+ "https://docs.spring.io/spring-boot/3.4 .0/reference/features/dev-services.html#features.dev-services.testcontainers" )
422
422
.contains ("mongo:latest" )
423
423
.contains ("postgres:latest" );
424
424
}
425
425
426
426
private ProjectStructure generateProject (String ... dependencies ) {
427
- ProjectRequest request = createProjectRequest (SupportedBootVersion .V3_3 , dependencies );
427
+ ProjectRequest request = createProjectRequest (SupportedBootVersion .latest () , dependencies );
428
428
request .setType ("maven-build" );
429
429
return generateProject (request );
430
430
}
431
431
432
432
private TextAssert assertHelpDocument (String ... dependencyIds ) {
433
- ProjectRequest request = createProjectRequest (SupportedBootVersion .V3_3 , dependencyIds );
433
+ ProjectRequest request = createProjectRequest (SupportedBootVersion .latest () , dependencyIds );
434
434
return assertThat (helpDocument (request ));
435
435
}
436
436
You can’t perform that action at this time.
0 commit comments