You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/08/17 10:21:23 UTC

[camel-quarkus] branch main updated: Add dev mode support to camel-quarkus-kotlin

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

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


The following commit(s) were added to refs/heads/main by this push:
     new f520a47  Add dev mode support to camel-quarkus-kotlin
f520a47 is described below

commit f520a476127135365aea9005c42f956712f577dd
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Aug 16 13:21:32 2021 +0100

    Add dev mode support to camel-quarkus-kotlin
---
 extensions/kotlin/deployment/pom.xml | 4 ++++
 extensions/kotlin/runtime/pom.xml    | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/extensions/kotlin/deployment/pom.xml b/extensions/kotlin/deployment/pom.xml
index 79bcbe8..1f1137b 100644
--- a/extensions/kotlin/deployment/pom.xml
+++ b/extensions/kotlin/deployment/pom.xml
@@ -37,6 +37,10 @@
             <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-kotlin</artifactId>
         </dependency>
+        <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-kotlin-deployment</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/kotlin/runtime/pom.xml b/extensions/kotlin/runtime/pom.xml
index 2b5dd55..26d3ab3 100644
--- a/extensions/kotlin/runtime/pom.xml
+++ b/extensions/kotlin/runtime/pom.xml
@@ -56,8 +56,8 @@
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
         <dependency>
-            <groupId>org.jetbrains.kotlin</groupId>
-            <artifactId>kotlin-stdlib-jdk8</artifactId>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-kotlin</artifactId>
         </dependency>
     </dependencies>