Simple upgrade to Spring Boot 3.4
This commit is contained in:
@@ -54,7 +54,7 @@ public class PrefsInitializer extends AbstractPreferenceInitializer {
|
||||
"org.openrewrite.java.testing.junit5.JUnit4to5Migration",
|
||||
"org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_7",
|
||||
"org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_3",
|
||||
"org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_4",
|
||||
"org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_4",
|
||||
"org.rewrite.java.security.*",
|
||||
"org.springframework.rewrite.test.*",
|
||||
"rewrite.test.*"
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
#
|
||||
# Copyright 2024 the original author or authors.
|
||||
# <p>
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
# <p>
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
# <p>
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
---
|
||||
type: specs.openrewrite.org/v1beta/recipe
|
||||
name: org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_4
|
||||
displayName: Migrate to Spring Boot 3.4
|
||||
description: >-
|
||||
Migrate applications to the latest Spring Boot 3.4 release. This recipe will modify an
|
||||
application's build files and migrate configuration settings that have
|
||||
changes between versions.
|
||||
tags:
|
||||
- spring
|
||||
- boot
|
||||
recipeList:
|
||||
- org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_3
|
||||
- org.openrewrite.java.spring.boot3.SpringBootProperties_3_4
|
||||
- org.openrewrite.java.dependencies.UpgradeDependencyVersion:
|
||||
groupId: org.springframework.boot
|
||||
artifactId: "*"
|
||||
newVersion: 3.4.x
|
||||
overrideManagedVersion: false
|
||||
- org.openrewrite.maven.UpgradePluginVersion:
|
||||
groupId: org.springframework.boot
|
||||
artifactId: spring-boot-maven-plugin
|
||||
newVersion: 3.4.x
|
||||
- org.openrewrite.java.dependencies.UpgradeDependencyVersion:
|
||||
groupId: org.springframework
|
||||
artifactId: "*"
|
||||
newVersion: 6.2.x
|
||||
- org.openrewrite.maven.UpgradeParentVersion:
|
||||
groupId: org.springframework.boot
|
||||
artifactId: spring-boot-starter-parent
|
||||
newVersion: 3.4.x
|
||||
- org.openrewrite.gradle.plugins.UpgradePluginVersion:
|
||||
pluginIdPattern: org.springframework.boot
|
||||
newVersion: 3.4.x
|
||||
|
||||
@@ -51,7 +51,7 @@ public class SpringBootUpgrade {
|
||||
versionsToRecipeId.put("3.1", "org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_1");
|
||||
versionsToRecipeId.put("3.2", "org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2");
|
||||
versionsToRecipeId.put("3.3", "org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_3");
|
||||
versionsToRecipeId.put("3.4", "org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_4");
|
||||
versionsToRecipeId.put("3.4", "org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_4");
|
||||
}
|
||||
|
||||
public SpringBootUpgrade(SimpleLanguageServer server, RewriteRecipeRepository recipeRepo, JavaProjectFinder projectFinder) {
|
||||
|
||||
@@ -443,7 +443,7 @@
|
||||
"org.openrewrite.java.testing.junit5.JUnit4to5Migration",
|
||||
"org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_7",
|
||||
"org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_3",
|
||||
"org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_4",
|
||||
"org.springframework.ide.vscode.rewrite.boot3.UpgradeSpringBoot_3_4",
|
||||
"org.rewrite.java.security.*",
|
||||
"org.springframework.rewrite.test.*",
|
||||
"rewrite.test.*"
|
||||
|
||||
Reference in New Issue
Block a user