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/18 20:09:02 UTC

[camel-quarkus] branch main updated: Add missing graal-sdk dependency declaration to extensions that use GraalVM APIs

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 6292718cbc Add missing graal-sdk dependency declaration to extensions that use GraalVM APIs
6292718cbc is described below

commit 6292718cbc82d62e30e72f72190acd0ee5689477
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Jul 18 15:26:02 2023 +0100

    Add missing graal-sdk dependency declaration to extensions that use GraalVM APIs
---
 extensions-core/xml-jaxb/runtime/pom.xml   | 5 +++++
 extensions-support/swagger/runtime/pom.xml | 5 +++++
 extensions/java-joor-dsl/runtime/pom.xml   | 5 +++++
 extensions/jsh-dsl/runtime/pom.xml         | 5 +++++
 extensions/json-validator/runtime/pom.xml  | 5 +++++
 extensions/kotlin-dsl/runtime/pom.xml      | 5 +++++
 extensions/nitrite/runtime/pom.xml         | 5 +++++
 7 files changed, 35 insertions(+)

diff --git a/extensions-core/xml-jaxb/runtime/pom.xml b/extensions-core/xml-jaxb/runtime/pom.xml
index 58af830641..f033399f09 100644
--- a/extensions-core/xml-jaxb/runtime/pom.xml
+++ b/extensions-core/xml-jaxb/runtime/pom.xml
@@ -52,6 +52,11 @@
             <groupId>io.quarkus</groupId>
             <artifactId>quarkus-jaxb</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions-support/swagger/runtime/pom.xml b/extensions-support/swagger/runtime/pom.xml
index fa52375b2b..f18194952f 100644
--- a/extensions-support/swagger/runtime/pom.xml
+++ b/extensions-support/swagger/runtime/pom.xml
@@ -47,6 +47,11 @@
             <groupId>io.swagger.parser.v3</groupId>
             <artifactId>swagger-parser</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/java-joor-dsl/runtime/pom.xml b/extensions/java-joor-dsl/runtime/pom.xml
index d6d9d738d2..dffbb62dd2 100644
--- a/extensions/java-joor-dsl/runtime/pom.xml
+++ b/extensions/java-joor-dsl/runtime/pom.xml
@@ -44,6 +44,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-java-joor-dsl</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/jsh-dsl/runtime/pom.xml b/extensions/jsh-dsl/runtime/pom.xml
index c6b34fb2ba..e31e29313c 100644
--- a/extensions/jsh-dsl/runtime/pom.xml
+++ b/extensions/jsh-dsl/runtime/pom.xml
@@ -48,6 +48,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-jsh-dsl</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/json-validator/runtime/pom.xml b/extensions/json-validator/runtime/pom.xml
index 386921dfa9..dd651401cb 100644
--- a/extensions/json-validator/runtime/pom.xml
+++ b/extensions/json-validator/runtime/pom.xml
@@ -44,6 +44,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-json-validator</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/kotlin-dsl/runtime/pom.xml b/extensions/kotlin-dsl/runtime/pom.xml
index 34d1ec014a..bde30bf37b 100644
--- a/extensions/kotlin-dsl/runtime/pom.xml
+++ b/extensions/kotlin-dsl/runtime/pom.xml
@@ -52,6 +52,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-kotlin-dsl</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/nitrite/runtime/pom.xml b/extensions/nitrite/runtime/pom.xml
index 739ccbf357..7b27101f99 100644
--- a/extensions/nitrite/runtime/pom.xml
+++ b/extensions/nitrite/runtime/pom.xml
@@ -48,6 +48,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-nitrite</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.graalvm.sdk</groupId>
+            <artifactId>graal-sdk</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 
     <build>