Skip to content

Commit

Permalink
Merge pull request #1596 from sullis
Browse files Browse the repository at this point in the history
* pr/1596:
  Upgrade Spring Cloud Contract to 4.2.0
  Update to Spring Boot 3.4.0

Closes gh-1596
  • Loading branch information
mhalbritter committed Dec 17, 2024
2 parents 551bba2 + 26d0f04 commit 7e28050
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 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
4 changes: 2 additions & 2 deletions initializr-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<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-cloud-contract.version>4.1.2</spring-cloud-contract.version>
<spring-boot.version>3.4.0</spring-boot.version>
<spring-cloud-contract.version>4.2.0</spring-cloud-contract.version>
</properties>
<scm>
<url>${git.url}</url>
Expand Down

0 comments on commit 7e28050

Please sign in to comment.