Skip to content

Commit

Permalink
moving misplaced property changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick McKinney committed Jul 19, 2024
1 parent 351c0ee commit a02bfe3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/resources/META-INF/rewrite/spring-boot-20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ recipeList:
- org.openrewrite.java.spring.boot2.MigrateLocalServerPortAnnotation
# Update properties
- org.openrewrite.java.spring.boot2.SpringBootProperties_2_0
- org.openrewrite.java.spring.ChangeSpringPropertyValue:
propertyKey: spring.main.banner-mode
oldValue: true
newValue: console
- org.openrewrite.java.spring.ChangeSpringPropertyValue:
propertyKey: spring.main.banner-mode
oldValue: false
newValue: "off"
- org.openrewrite.java.spring.boot2.SpringBoot2BestPractices
---
type: specs.openrewrite.org/v1beta/recipe
Expand Down Expand Up @@ -133,14 +141,6 @@ recipeList:
oldFullyQualifiedTypeName: org.hibernate.validator.constraints.NotEmpty
newFullyQualifiedTypeName: javax.validation.constraints.NotEmpty
- org.openrewrite.java.spring.boot2.MaybeAddJavaxValidationApi
- org.openrewrite.java.spring.ChangeSpringPropertyValue:
propertyKey: spring.main.banner-mode
oldValue: true
newValue: console
- org.openrewrite.java.spring.ChangeSpringPropertyValue:
propertyKey: spring.main.banner-mode
oldValue: false
newValue: "off"
---
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.java.spring.boot2.MaybeAddJavaxValidationApi
Expand Down

0 comments on commit a02bfe3

Please sign in to comment.