Я пытаюсь обновить проект Spring Boot с версии 2.7.6 до Spring Boot 3.2
Я использую плагин ниже
org.openrewrite.maven
rewrite-maven-plugin
5.25.0
org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2
org.openrewrite.recipe
rewrite-spring
5.7.0
В качестве команды я использую mvn rewrite:run, но в моем проекте ничего не обновляется.
Получение журналов ниже в моей консоли
SLF4J(W): No SLF4J providers were found.
SLF4J(W): Defaulting to no-operation (NOP) logger implementation
SLF4J(W): See https://www.slf4j.org/codes.html#noProviders for further details.
SLF4J(W): Class path contains SLF4J bindings targeting slf4j-api versions 1.7.x or earlier.
SLF4J(W): Ignoring binding found at [jar:file:/C:/Users/Siladitta/.p2/pool/plugins/org.eclipse.m2e.maven.runtime_3.8.701.20230209-1606/jars/maven-slf4j-provider-3.8.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J(W): See https://www.slf4j.org/codes.html#ignoredBindings for an explanation.
Я что-то здесь упустил?
Ниже приведен мой полный pom-файл
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.7.6
com.test
springboot
0.0.1-SNAPSHOT
springboot-crud-jpa
spring boot crud operations example with JPA
8
8
8
org.springframework.boot
spring-boot-starter-data-jpa
org.springframework.boot
spring-boot-starter-web
com.h2database
h2
runtime
org.projectlombok
lombok
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-maven-plugin
org.openrewrite.maven
rewrite-maven-plugin
5.25.0
org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2
org.openrewrite.recipe
rewrite-spring
5.7.0
Подробнее здесь: https://stackoverflow.com/questions/782 ... ot-project