You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zb...@apache.org on 2021/04/30 12:18:21 UTC

[camel-quarkus] 12/12: fix junit platform launcher error

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

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

commit 69e4a1df4065ac68d236d2194d33c3c5b22e97d2
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Fri Apr 30 14:09:27 2021 +0200

    fix junit platform launcher error
---
 extensions/jolt/runtime/pom.xml   | 6 +++++-
 extensions/qute/component/pom.xml | 5 +++++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/extensions/jolt/runtime/pom.xml b/extensions/jolt/runtime/pom.xml
index 87ae92f..ee33e52 100644
--- a/extensions/jolt/runtime/pom.xml
+++ b/extensions/jolt/runtime/pom.xml
@@ -71,7 +71,11 @@
             <artifactId>junit-jupiter-engine</artifactId>
             <scope>test</scope>
         </dependency>
-
+        <dependency>
+            <groupId>org.junit.platform</groupId>
+            <artifactId>junit-platform-launcher</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/extensions/qute/component/pom.xml b/extensions/qute/component/pom.xml
index a16aa39..06d07b9 100644
--- a/extensions/qute/component/pom.xml
+++ b/extensions/qute/component/pom.xml
@@ -87,6 +87,11 @@
             <artifactId>junit-jupiter-engine</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.junit.platform</groupId>
+            <artifactId>junit-platform-launcher</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>