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 2023/07/31 10:18:58 UTC

[camel-quarkus] branch main updated: Add missing graal-sdk dependency to ical runtime module

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 b70e0e5c2b Add missing graal-sdk dependency to ical runtime module
b70e0e5c2b is described below

commit b70e0e5c2bd9c2d467325c001a9abcf2f1672e54
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Jul 31 08:06:02 2023 +0100

    Add missing graal-sdk dependency to ical runtime module
---
 extensions/ical/runtime/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/extensions/ical/runtime/pom.xml b/extensions/ical/runtime/pom.xml
index e1d4084c24..47c3ae8e48 100644
--- a/extensions/ical/runtime/pom.xml
+++ b/extensions/ical/runtime/pom.xml
@@ -47,6 +47,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-ical</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>