You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/05 06:50:00 UTC

[camel] 03/03: Fixed test

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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f44b207ba2665ff32341c3e3551e166ed378fae2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 5 07:49:40 2020 +0100

    Fixed test
---
 components/camel-osgi-activator/pom.xml                               | 4 ++++
 components/camel-osgi-activator/src/assembly/test-bundles.xml         | 2 +-
 .../org/apache/camel/component/osgi/activator/PaxExamOptions.java     | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/components/camel-osgi-activator/pom.xml b/components/camel-osgi-activator/pom.xml
index 635c501..6c81feb 100644
--- a/components/camel-osgi-activator/pom.xml
+++ b/components/camel-osgi-activator/pom.xml
@@ -56,6 +56,10 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-core-osgi</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-core-languages</artifactId>
+        </dependency>
         <!-- test -->
         <dependency>
             <groupId>org.apache.camel</groupId>
diff --git a/components/camel-osgi-activator/src/assembly/test-bundles.xml b/components/camel-osgi-activator/src/assembly/test-bundles.xml
index c64ae38..a7798e9 100644
--- a/components/camel-osgi-activator/src/assembly/test-bundles.xml
+++ b/components/camel-osgi-activator/src/assembly/test-bundles.xml
@@ -34,11 +34,11 @@
         <include>org.apache.camel:camel-base</include>
         <include>org.apache.camel:camel-core-engine</include>
         <include>org.apache.camel:camel-core-osgi</include>
+        <include>org.apache.camel:camel-core-languages</include>
         <include>org.apache.camel:camel-management-api</include>
         <include>org.apache.camel:camel-osgi-activator</include>
         <include>org.apache.camel:camel-support</include>
         <include>org.apache.camel:camel-util</include>
-        
         <include>org.apache.camel:camel-timer</include>
         <include>org.apache.camel:camel-log</include>
       </includes>
diff --git a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
index 709476e..38f3a8e 100644
--- a/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
+++ b/components/camel-osgi-activator/src/test/java/org/apache/camel/component/osgi/activator/PaxExamOptions.java
@@ -63,6 +63,7 @@ public enum PaxExamOptions {
         ),
         CAMEL_CORE_OSGI(
                 createStreamBundleOption("camel-core-engine.jar"),
+                createStreamBundleOption("camel-core-languages.jar"),
                 createStreamBundleOption("camel-api.jar"),
                 createStreamBundleOption("camel-base.jar"),
                 createStreamBundleOption("camel-management-api.jar"),