Skip to content

Commit

Permalink
[Apps Plugin] update Spring Boot to 3.4.1
Browse files Browse the repository at this point in the history
Fix test
  • Loading branch information
onobc committed Dec 20, 2024
1 parent 3de670f commit 03a65a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void httpSourceAppsGeneration() throws Exception {

Parent parent = pomModel.getParent();
assertThat(parent.getArtifactId()).isEqualTo("spring-boot-starter-parent");
assertThat(parent.getVersion()).isEqualTo("3.3.0.M3");
assertThat(parent.getVersion()).isEqualTo("3.4.1");
assertThat(pomModel.getArtifactId()).isEqualTo("http-source-kafka");
assertThat(pomModel.getGroupId()).isEqualTo("org.springframework.cloud.stream.app.test");
assertThat(pomModel.getName()).isEqualTo("http-source-kafka");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void prepareForTest() throws NoSuchFieldException {
application.getMaven().getDependencies().add(dep);

// BOM
application.setBootVersion("3.3.0.M3");
application.setBootVersion("3.4.1");
application.getMetadata().setMavenPluginVersion("1.0.2.BUILD-SNAPSHOT");

setMojoProperty("application", application);
Expand Down Expand Up @@ -186,7 +186,7 @@ private void assertGeneratedPomXml(File rootPath) {

Parent parent = pomModel.getParent();
assertThat(parent.getArtifactId()).isEqualTo("spring-boot-starter-parent");
assertThat(parent.getVersion()).isEqualTo("3.3.0.M3");
assertThat(parent.getVersion()).isEqualTo("3.4.1");

assertThat(pomModel.getArtifactId()).isEqualTo("log-sink-kafka");
assertThat(pomModel.getGroupId()).isEqualTo("org.springframework.cloud.stream.app");
Expand Down

0 comments on commit 03a65a4

Please sign in to comment.