Skip to content

Commit e9f1079

Browse files
committed
Fix name of spring batch migration recipe
1 parent 0cd2c0e commit e9f1079

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/resources/META-INF/rewrite/spring-batch-5.0.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
type: specs.openrewrite.org/v1beta/recipe
1818

1919
name: org.openrewrite.java.spring.boot3.SpringBatch4To5Migration
20-
displayName: Migrate to Spring Batch 4.3 from Spring Batch 5.0
20+
displayName: Migrate to Spring Batch 5.0 from 4.3
2121
description: Migrate applications built on Spring Batch 4.3 to the latest Spring Batch 5.0 release.
2222
tags:
2323
- spring
@@ -60,7 +60,7 @@ displayName: Transform classes that extend `StepExecutionListenerSupport` to imp
6060
description: As of 5.0 `StepExecutionListener` has default methods (made possible by a Java 8 baseline) and can be implemented directly without the need for this adapter.
6161
recipeList:
6262
- org.openrewrite.java.spring.batch.ReplaceSupportClassWithItsInterface:
63-
fullyQualifiedClassName: org.springframework.batch.core.listener.StepExecutionListenerSupport
63+
fullyQualifiedClassName: org.springframework.batch.core.listener.StepExecutionListenerSupport
6464
fullyQualifiedInterfaceName: org.springframework.batch.core.StepExecutionListener
6565
---
6666
type: specs.openrewrite.org/v1beta/recipe
@@ -69,7 +69,7 @@ displayName: Transform classes that extend `ChunkListenerSupport` to implement t
6969
description: As of 5.0 `ChunkListener` has default methods (made possible by a Java 8 baseline) and can be implemented directly without the need for this adapter.
7070
recipeList:
7171
- org.openrewrite.java.spring.batch.ReplaceSupportClassWithItsInterface:
72-
fullyQualifiedClassName: org.springframework.batch.core.listener.ChunkListenerSupport
72+
fullyQualifiedClassName: org.springframework.batch.core.listener.ChunkListenerSupport
7373
fullyQualifiedInterfaceName: org.springframework.batch.core.ChunkListener
7474
---
7575
type: specs.openrewrite.org/v1beta/recipe

0 commit comments

Comments
 (0)