From 5d0e13ae7af7c30fab82fe09621ab06a9c68616a Mon Sep 17 00:00:00 2001 From: JiriOndrusek Date: Thu, 3 Oct 2024 08:45:29 +0200 Subject: [PATCH] Update camel-upgrade-recipes to 4.8.0 --- pom.xml | 2 +- recipes-tests/pom.xml | 51 +++++++++++++------ .../updates/camel/CamelQuarkusTestUtil.java | 14 ++++- .../updates/camel/CamelUpdate41Test.java | 2 +- .../updates/camel/CamelUpdate42Test.java | 2 +- .../updates/camel/CamelUpdate43Test.java | 2 +- .../updates/camel/CamelUpdate44Test.java | 2 +- .../updates/camel/CamelUpdate45Test.java | 46 +++++++++++++++++ .../updates/camel/CamelUpdate46Test.java | 37 ++++++++++++++ .../updates/camel/CamelUpdate47Test.java | 16 ++++++ .../camel/camel40/CameXmlDslRecipeTest.java | 2 +- .../camel40/CamelAPIsPropertiesTest.java | 2 +- .../updates/camel/camel40/CamelAPIsTest.java | 2 +- .../camel/camel40/CamelBeanRecipeTest.java | 2 +- .../camel/camel40/CamelEIPRecipeTest.java | 2 +- .../updates/camel/camel40/CamelHttpTest.java | 2 +- .../updates/camel/camel40/CamelJmxTest.java | 2 +- .../updates/camel/camel40/CamelYamlTest.java | 2 +- recipes/pom.xml | 2 +- .../camel-quarkus/3.15.yaml | 34 +++++++++++++ .../camel-quarkus/3.8.yaml | 2 +- .../camel-quarkus/3alpha.yaml | 2 +- 22 files changed, 197 insertions(+), 33 deletions(-) create mode 100644 recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate45Test.java create mode 100644 recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate46Test.java create mode 100644 recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate47Test.java create mode 100644 recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.15.yaml diff --git a/pom.xml b/pom.xml index c5b3121863..c34a24c31c 100644 --- a/pom.xml +++ b/pom.xml @@ -67,7 +67,7 @@ 6.18.0 - 0.1 + 4.8.0 1.9.17 diff --git a/recipes-tests/pom.xml b/recipes-tests/pom.xml index 1140b05f92..1a1370df16 100644 --- a/recipes-tests/pom.xml +++ b/recipes-tests/pom.xml @@ -32,6 +32,8 @@ 4.5.14 4.4.16 4.0.3 + 4.8.0 + 6.0.0 @@ -167,7 +169,7 @@ - org.apache.camel + org.apache.camel.upgrade camel-upgrade-recipes ${camel-upgrade-recipes.version} test @@ -309,7 +311,7 @@ ${test.camel-quarkus-3-0.camel-version} ${rewrite-tmp-classpath} - + org.apache.httpcomponents httpclient @@ -322,71 +324,90 @@ ${test.camel-quarkus-3-0.http-core-version} ${rewrite-tmp-classpath} - + org.apache.camel - camel-api + camel-base ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-base + camel-base-engine ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-base-engine + camel-endpointdsl ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-endpointdsl + camel-json-validator ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-core-model + camel-kafka ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-json-validator + camel-saga ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-kafka + camel-tracing ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-saga + camel-spring-redis ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-support + camel-opensearch ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} org.apache.camel - camel-tracing + camel-elasticsearch ${test.camel-quarkus-3-8.camel-version} ${rewrite-tmp-classpath} + org.apache.camel - camel-util - ${test.camel-quarkus-3-8.camel-version} + camel-elasticsearch + ${test.camel-quarkus-3-15.camel-version} + ${rewrite-tmp-classpath} + + + org.apache.camel + camel-http-common + ${test.camel-quarkus-3-15.camel-version} + ${rewrite-tmp-classpath} + + + org.apache.camel + camel-undertow + ${test.camel-quarkus-3-15.camel-version} + ${rewrite-tmp-classpath} + + + jakarta.servlet + jakarta.servlet-api + ${test.camel-quarkus-3-15.jakarta-servlet-api-version} ${rewrite-tmp-classpath} diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelQuarkusTestUtil.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelQuarkusTestUtil.java index 1d76cc74ea..b98df9460e 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelQuarkusTestUtil.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelQuarkusTestUtil.java @@ -19,17 +19,27 @@ public static RecipeSpec recipe3alpha(RecipeSpec spec, String... activeRecipes) } public static RecipeSpec recipe3_8(RecipeSpec spec, String... activeRecipes) { + return recipeForVersion("3.8", spec, activeRecipes); + } + + public static RecipeSpec recipe3_15(RecipeSpec spec, String... activeRecipes) { + return recipeForVersion("3.15", spec, activeRecipes); + } + + private static RecipeSpec recipeForVersion(String version, RecipeSpec spec, String... activeRecipes) { if(activeRecipes.length == 0) { - return recipe(spec, "3.8"); + return recipe(spec, version); } - return recipe(spec, "3.8", activeRecipes); + return recipe(spec, version, activeRecipes); } + private static RecipeSpec recipe(RecipeSpec spec, String version) { String[] defaultRecipes = switch (version) { case "3.8" -> new String[] {"io.quarkus.updates.camel.camel44.CamelQuarkusMigrationRecipe"}; case "3alpha" -> new String[] {"io.quarkus.updates.camel.camel40.CamelQuarkusMigrationRecipe"}; + case "3.15" -> new String[] {"io.quarkus.updates.camel.camel47.CamelQuarkusMigrationRecipe"}; default -> throw new IllegalArgumentException("Version '" + version + "' is not allowed!"); }; return recipe(spec, version, defaultRecipes); diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate41Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate41Test.java index e009b19a82..92bc15f073 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate41Test.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate41Test.java @@ -3,7 +3,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelUpdate41Test extends org.apache.camel.updates.camel44.CamelUpdate41Test { +public class CamelUpdate41Test extends org.apache.camel.upgrade.camel44.CamelUpdate41Test { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate42Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate42Test.java index d9d1f80218..3e60200ab6 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate42Test.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate42Test.java @@ -5,7 +5,7 @@ import static org.openrewrite.java.Assertions.java; -public class CamelUpdate42Test extends org.apache.camel.updates.camel44.CamelUpdate42Test { +public class CamelUpdate42Test extends org.apache.camel.upgrade.camel44.CamelUpdate42Test { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate43Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate43Test.java index 1a14c8eefb..16f1a290d6 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate43Test.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate43Test.java @@ -3,7 +3,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelUpdate43Test extends org.apache.camel.updates.camel44.CamelUpdate43Test { +public class CamelUpdate43Test extends org.apache.camel.upgrade.camel44.CamelUpdate43Test { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate44Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate44Test.java index 2297fc20c8..540db59137 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate44Test.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate44Test.java @@ -3,7 +3,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelUpdate44Test extends org.apache.camel.updates.camel44.CamelUpdate44Test { +public class CamelUpdate44Test extends org.apache.camel.upgrade.camel44.CamelUpdate44Test { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate45Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate45Test.java new file mode 100644 index 0000000000..760397335e --- /dev/null +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate45Test.java @@ -0,0 +1,46 @@ +package io.quarkus.updates.camel; + +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.openrewrite.test.RecipeSpec; +import org.openrewrite.test.TypeValidation; + +import static org.openrewrite.java.Assertions.java; + +public class CamelUpdate45Test extends org.apache.camel.upgrade.CamelUpdate45Test { + + @Override + public void defaults(RecipeSpec spec) { + //let the parser be initialized in the camel parent + super.defaults(spec); + //recipe has to be loaded differently + CamelQuarkusTestUtil.recipe3_15(spec) + .typeValidationOptions(TypeValidation.none()); + } + + @Test + @Override + public void testSearch() { + //test has to be changed, because the result of camel 4.5 migration is a;so migrated in camel 4.6, + // therefore camel-quarkus migration from 3.8 to 3.15 has to expect both changes + rewriteRun(java( + """ + public class SearchTest { + public void test() { + + org.apache.camel.component.es.aggregation.BulkRequestAggregationStrategy elasticAggregationStrategy = null; + org.apache.camel.component.opensearch.aggregation.BulkRequestAggregationStrategy openAggregationStrategy = null; + } + } + """, + """ + public class SearchTest { + public void test() { + + org.apache.camel.component.es.aggregation.ElasticsearchBulkRequestAggregationStrategy elasticAggregationStrategy = null; + org.apache.camel.component.opensearch.aggregation.OpensearchBulkRequestAggregationStrategy openAggregationStrategy = null; + } + } + """)); + } +} diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate46Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate46Test.java new file mode 100644 index 0000000000..40edef3972 --- /dev/null +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate46Test.java @@ -0,0 +1,37 @@ +package io.quarkus.updates.camel; + +import org.junit.jupiter.api.Disabled; +import org.openrewrite.test.RecipeSpec; +import org.openrewrite.test.TypeValidation; + +public class CamelUpdate46Test extends org.apache.camel.upgrade.CamelUpdate46Test { + + @Override + public void defaults(RecipeSpec spec) { + //let the parser be initialized in the camel parent + super.defaults(spec); + //recipe has to be loaded differently + CamelQuarkusTestUtil.recipe3_15(spec) + .typeValidationOptions(TypeValidation.none()); + } + + //following tests have to be disabled, the migration they cover is happening only between Camel 4.5-4.6 + // module which introduced the code before migration does not exist in Camel 4.4 (which is used by camel-quarkus 3.8) + @Disabled + @Override + public void testLangchainEmbeddings() { + } + + @Disabled + @Override + public void testLangchainChat() { + + } + + //followig test is covered by CamelUpdate45Test.testSearch + @Disabled + @Override + public void testSearch() { + super.testSearch(); + } +} diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate47Test.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate47Test.java new file mode 100644 index 0000000000..f8b6015cbb --- /dev/null +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/CamelUpdate47Test.java @@ -0,0 +1,16 @@ +package io.quarkus.updates.camel; + +import org.openrewrite.test.RecipeSpec; +import org.openrewrite.test.TypeValidation; + +public class CamelUpdate47Test extends org.apache.camel.upgrade.CamelUpdate47Test { + + @Override + public void defaults(RecipeSpec spec) { + //let the parser be initialized in the camel parent + super.defaults(spec); + //recipe has to be loaded differently + CamelQuarkusTestUtil.recipe3_15(spec) + .typeValidationOptions(TypeValidation.none()); + } +} diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CameXmlDslRecipeTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CameXmlDslRecipeTest.java index b6d0e47781..11e44fdf4a 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CameXmlDslRecipeTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CameXmlDslRecipeTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CameXmlDslRecipeTest extends org.apache.camel.updates.camel40.CameXmlDslRecipeTest { +public class CameXmlDslRecipeTest extends org.apache.camel.upgrade.camel40.CameXmlDslRecipeTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsPropertiesTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsPropertiesTest.java index 1ede4da4d4..f99146a8c5 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsPropertiesTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsPropertiesTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelAPIsPropertiesTest extends org.apache.camel.updates.camel40.CamelAPIsPropertiesTest { +public class CamelAPIsPropertiesTest extends org.apache.camel.upgrade.camel40.CamelAPIsPropertiesTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsTest.java index 07bcd86dcf..fa610f58b9 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelAPIsTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelAPIsTest extends org.apache.camel.updates.camel40.CamelAPIsTest { +public class CamelAPIsTest extends org.apache.camel.upgrade.camel40.CamelAPIsTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelBeanRecipeTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelBeanRecipeTest.java index 4e3dd6c79f..29789a6c86 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelBeanRecipeTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelBeanRecipeTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelBeanRecipeTest extends org.apache.camel.updates.camel40.CamelBeanRecipeTest { +public class CamelBeanRecipeTest extends org.apache.camel.upgrade.camel40.CamelBeanRecipeTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelEIPRecipeTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelEIPRecipeTest.java index c0dac0619e..b33c6bfb7e 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelEIPRecipeTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelEIPRecipeTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelEIPRecipeTest extends org.apache.camel.updates.camel40.CamelEIPRecipeTest { +public class CamelEIPRecipeTest extends org.apache.camel.upgrade.camel40.CamelEIPRecipeTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelHttpTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelHttpTest.java index 54b4ae27aa..1dc654575a 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelHttpTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelHttpTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelHttpTest extends org.apache.camel.updates.camel40.CamelHttpTest { +public class CamelHttpTest extends org.apache.camel.upgrade.camel40.CamelHttpTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelJmxTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelJmxTest.java index e5775fff9e..a23ee5fd58 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelJmxTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelJmxTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelJmxTest extends org.apache.camel.updates.camel40.CamelAPIsTest { +public class CamelJmxTest extends org.apache.camel.upgrade.camel40.CamelAPIsTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelYamlTest.java b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelYamlTest.java index e4f7957aea..2f1191695f 100644 --- a/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelYamlTest.java +++ b/recipes-tests/src/test/java/io/quarkus/updates/camel/camel40/CamelYamlTest.java @@ -4,7 +4,7 @@ import org.openrewrite.test.RecipeSpec; import org.openrewrite.test.TypeValidation; -public class CamelYamlTest extends org.apache.camel.updates.camel40.CamelYamlTest { +public class CamelYamlTest extends org.apache.camel.upgrade.camel40.CamelYamlTest { @Override public void defaults(RecipeSpec spec) { diff --git a/recipes/pom.xml b/recipes/pom.xml index 2b34941a7b..689d5cf947 100644 --- a/recipes/pom.xml +++ b/recipes/pom.xml @@ -136,7 +136,7 @@ - org.apache.camel + org.apache.camel.upgrade camel-upgrade-recipes ${camel-upgrade-recipes.version} diff --git a/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.15.yaml b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.15.yaml new file mode 100644 index 0000000000..6db3a1afa3 --- /dev/null +++ b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.15.yaml @@ -0,0 +1,34 @@ +# +# Copyright 2021 the original author or authors. +#

+# 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 +#

+# https://www.apache.org/licenses/LICENSE-2.0 +#

+# 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. +# + +##### +# Rules coming from https://camel.apache.org/manual/camel-4x-upgrade-guide.html +##### + +##### +# Update the Camel - Quarkus extensions +##### +--- +type: specs.openrewrite.org/v1beta/recipe +name: io.quarkus.updates.camel.camel47.CamelQuarkusMigrationRecipe +displayName: Migrates `camel 4.4` application to `camel 4.8` +description: Migrates `camel 4.4` quarkus application to `camel 4.8`. +recipeList: +# use the recipe from camel upgrade recipes project + - org.apache.camel.upgrade.camel45.CamelMigrationRecipe + - org.apache.camel.upgrade.camel46.CamelMigrationRecipe + - org.apache.camel.upgrade.camel47.CamelMigrationRecipe +# there is no recipe for camel 4.8 - intentionaly \ No newline at end of file diff --git a/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.8.yaml b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.8.yaml index 34bcbce2c0..5fa586390b 100644 --- a/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.8.yaml +++ b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3.8.yaml @@ -28,4 +28,4 @@ displayName: Migrates `camel 4.0` application to `camel 4.4` description: Migrates `camel 4.0` quarkus application to `camel 4.4`. recipeList: # use the recipe from camel standalone migration - - org.apache.camel.updates.camel44.CamelMigrationRecipe \ No newline at end of file + - org.apache.camel.upgrade.camel44.CamelMigrationRecipe diff --git a/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3alpha.yaml b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3alpha.yaml index 6e8f2e4ee6..51e35cf54c 100644 --- a/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3alpha.yaml +++ b/recipes/src/main/resources/quarkus-updates/org.apache.camel.quarkus/camel-quarkus/3alpha.yaml @@ -36,7 +36,7 @@ displayName: Migrate `camel3` application to `camel4.` description: Migrate `camel3` quarkus application to `camel4` quarkus. recipeList: # use the recipe from camel standalone migration - - org.apache.camel.updates.camel40.CamelMigrationRecipe + - org.apache.camel.upgrade.camel40.CamelMigrationRecipe # workaround for https://issues.apache.org/jira/browse/CAMEL-21131 - org.openrewrite.java.camel.migrate.ChangePropertyValue ---