Skip to content

Commit

Permalink
Boot 3 upgrade doesn't add XML Bind dependency (#485)
Browse files Browse the repository at this point in the history
* Boot 3 upgrade doesn't add XML Bind dependency

* Update src/testWithSpringBoot_2_7/java/org/openrewrite/java/spring/boot2/Boot3UpgradeTest.java

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* Update src/testWithSpringBoot_2_7/java/org/openrewrite/java/spring/boot2/Boot3UpgradeTest.java

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* refactor: Update Gradle wrapper (#534)

Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.gradle.UpdateGradleWrapper?organizationId=T3BlblJld3JpdGU%3D

Co-authored-by: Moderne <team@moderne.io>

* Drop AdditionalSpringBootProperties_3_0

As indicated on #517 (comment)

* refactor: Add a blank line around fields with annotations

Use this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.java.recipes.BlankLinesAroundFieldsWithAnnotations?organizationId=T3BlblJld3JpdGU%3D

Co-authored-by: Moderne <team@moderne.io>

* Relocate Launcher classes renamed in Spring Boot 3.2 (#538)

* refactor: Only publish build scans if authenticated

Use this link to re-run the recipe: https://app.moderne.io/recipes/builder/kLJjXlflM?organizationId=T3BlblJld3JpdGU%3D

Co-authored-by: Moderne <team@moderne.io>

* Adopt test to the latest changes

* Unit tests for spring petclinic missing `jakarta.xml.bind-api` dependency

* Apply automated code review suggestion

* Apply formatter and add link to issue for docs

* Drop Environment.builder()

* Adopt to the latest changes in `rewrite-migrate-java`

---------

Co-authored-by: Tim te Beek <tim@moderne.io>
Co-authored-by: Tim te Beek <timtebeek@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Shannon Pamperl <shanman190@gmail.com>
Co-authored-by: Moderne <team@moderne.io>
Co-authored-by: Jonathan Schnéider <jkschneider@gmail.com>
  • Loading branch information
7 people authored Jun 20, 2024
1 parent e67b495 commit 24af0a4
Show file tree
Hide file tree
Showing 2 changed files with 460 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,15 @@ dependencies {
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework:spring-web:5.3.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework:spring-webmvc:5.3.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework:spring-webflux:5.3.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework.data:spring-data-jpa:2.7.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework.security:spring-security-core:5.7.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework.security:spring-security-config:5.7.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework.security:spring-security-web:5.7.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.springframework.security:spring-security-ldap:5.7.+")
"testWithSpringBoot_2_7RuntimeOnly"("org.apache.tomcat.embed:tomcat-embed-core:9.0.+")
"testWithSpringBoot_2_7RuntimeOnly"("jakarta.persistence:jakarta.persistence-api:2.2.3")
"testWithSpringBoot_2_7RuntimeOnly"("jakarta.validation:jakarta.validation-api:2.0.2")
"testWithSpringBoot_2_7RuntimeOnly"("jakarta.xml.bind:jakarta.xml.bind-api:2.3.3")

"testWithSpringBoot_3_0RuntimeOnly"("org.springframework.boot:spring-boot-starter:3.0.+")
"testWithSpringBoot_3_0RuntimeOnly"("org.springframework.boot:spring-boot-starter-test:3.0.+")
Expand Down
Loading

0 comments on commit 24af0a4

Please sign in to comment.