File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
docs/content/en/docs/migration Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,30 @@ title: Migrating from v5.2 to v5.3
33description : Migrating from v5.2 to v5.3
44---
55
6+ ## Automated Migration with OpenRewrite
7+
8+ You can automatically apply all the migration changes described below using [ OpenRewrite] ( https://docs.openrewrite.org/ ) .
9+ Add the following to your ` pom.xml ` and run ` mvn rewrite:run ` :
10+
11+ ``` xml
12+ <plugin >
13+ <groupId >org.openrewrite.maven</groupId >
14+ <artifactId >rewrite-maven-plugin</artifactId >
15+ <version >6.33.0</version >
16+ <configuration >
17+ <activeRecipes >
18+ <recipe >io.javaoperatorsdk.operator.migration.V5_3Migration</recipe >
19+ </activeRecipes >
20+ </configuration >
21+ <dependencies >
22+ <dependency >
23+ <groupId >io.javaoperatorsdk</groupId >
24+ <artifactId >migration</artifactId >
25+ <version >5.3.0</version >
26+ </dependency >
27+ </dependencies >
28+ </plugin >
29+ ```
630
731## Rename of JUnit module
832
Original file line number Diff line number Diff line change 5454 <module >caffeine-bounded-cache-support</module >
5555 <module >bootstrapper-maven-plugin</module >
5656 <module >test-index-processor</module >
57+ <module >migration</module >
5758 </modules >
5859
5960 <scm >
You can’t perform that action at this time.
0 commit comments