This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/camel-main by this push:
     new 2881ad9  Fixed Groovy loader for Camel Quarkus 2.x and Camel 3.10
2881ad9 is described below

commit 2881ad9d583f17ac79d8062ac9daf48be0088b8d
Author: Otavio Rodolfo Piske <opi...@redhat.com>
AuthorDate: Thu Jun 3 15:10:22 2021 +0200

    Fixed Groovy loader for Camel Quarkus 2.x and Camel 3.10
---
 pom.xml                                                        | 10 ----------
 .../camel/k/tooling/maven/processors/CatalogProcessor3x.java   |  2 +-
 2 files changed, 1 insertion(+), 11 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9ff2ef4..1a1255b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -649,16 +649,6 @@
                 <artifactId>camel-k-loader-yaml-impl</artifactId>
                 <version>${project.version}</version>
             </dependency>
-            <dependency>
-                <groupId>org.apache.camel.k</groupId>
-                <artifactId>camel-k-loader-groovy</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.camel.k</groupId>
-                <artifactId>camel-k-loader-groovy-deployment</artifactId>
-                <version>${project.version}</version>
-            </dependency>
 
             <!-- itests -->
             <dependency>
diff --git 
a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java
 
b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java
index 68d996d..6567e05 100644
--- 
a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java
+++ 
b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java
@@ -159,7 +159,7 @@ public class CatalogProcessor3x implements CatalogProcessor 
{
         );
         specBuilder.putLoader(
             "groovy",
-            CamelLoader.fromArtifact("org.apache.camel.k", 
"camel-k-loader-groovy")
+            CamelLoader.fromArtifact("org.apache.camel.quarkus", 
"camel-quarkus-groovy-dsl")
                 .addLanguage("groovy")
                 .putMetadata("native", "false")
                 .build()

Reply via email to