Skip to content

Commit

Permalink
use Spring Boot 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Dec 15, 2024
1 parent 9702624 commit d6e1831
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
*/
class ProjectGeneratorIntegrationTests {

private static final String SPRING_BOOT_VERSION = "3.3.0";
private static final String SPRING_BOOT_VERSION = "3.4.0";

private static final String JAVA_VERSION = "17";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void setup(@TempDir Path directory) {
}

static Stream<Arguments> supportedPlatformVersions() {
return Stream.of(Arguments.arguments("3.3.0"), Arguments.arguments("3.4.0-RC1"));
return Stream.of(Arguments.arguments("3.3.0"), Arguments.arguments("3.4.0"));
}

@ParameterizedTest(name = "Spring Boot {0}")
Expand All @@ -87,8 +87,7 @@ void buildWriterIsContributed(String platformVersion) {
}

static Stream<Arguments> gradleWrapperParameters() {
return Stream.of(Arguments.arguments("3.3.0", GRADLE_VERSION),
Arguments.arguments("3.4.0-RC1", GRADLE_VERSION));
return Stream.of(Arguments.arguments("3.3.0", GRADLE_VERSION), Arguments.arguments("3.4.0", GRADLE_VERSION));
}

@ParameterizedTest(name = "Spring Boot {0}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ void buildWriterIsContributed(String platformVersion) {
}

static Stream<Arguments> gradleWrapperParameters() {
return Stream.of(Arguments.arguments("3.3.0", GRADLE_VERSION),
Arguments.arguments("3.4.0-RC1", GRADLE_VERSION));
return Stream.of(Arguments.arguments("3.3.0", GRADLE_VERSION), Arguments.arguments("3.4.0", GRADLE_VERSION));
}

@ParameterizedTest(name = "Spring Boot {0}")
Expand Down
2 changes: 1 addition & 1 deletion initializr-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<commons-text.version>1.12.0</commons-text.version>
<maven.version>3.9.6</maven.version>
<maven-resolver.version>1.9.20</maven-resolver.version>
<spring-boot.version>3.3.6</spring-boot.version>
<spring-boot.version>3.4.0</spring-boot.version>
<spring-cloud-contract.version>4.1.2</spring-cloud-contract.version>
</properties>
<scm>
Expand Down

0 comments on commit d6e1831

Please sign in to comment.