From 7fb21edc00e64192dc1412543729bdec362aa0f3 Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Mon, 24 Jun 2024 12:17:58 +0200 Subject: [PATCH] Add `plaintextOnly: true` to `RelocateLauncherClasses` As suggested in - https://github.com/openrewrite/rewrite/pull/4277 - https://github.com/openrewrite/rewrite-spring/pull/538 --- src/main/resources/META-INF/rewrite/spring-boot-32.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/META-INF/rewrite/spring-boot-32.yml b/src/main/resources/META-INF/rewrite/spring-boot-32.yml index a583255a..32315fd0 100644 --- a/src/main/resources/META-INF/rewrite/spring-boot-32.yml +++ b/src/main/resources/META-INF/rewrite/spring-boot-32.yml @@ -87,9 +87,12 @@ recipeList: - org.openrewrite.text.FindAndReplace: find: org.springframework.boot.loader.JarLauncher replace: org.springframework.boot.loader.launch.JarLauncher + plaintextOnly: true - org.openrewrite.text.FindAndReplace: find: org.springframework.boot.loader.PropertiesLauncher replace: org.springframework.boot.loader.launch.PropertiesLauncher + plaintextOnly: true - org.openrewrite.text.FindAndReplace: find: org.springframework.boot.loader.WarLauncher replace: org.springframework.boot.loader.launch.WarLauncher + plaintextOnly: true