You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/25 10:22:23 UTC

[camel-karaf] 02/05: Camel-itest-osgi: set up the profile for testing

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

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

commit ed7f3f160be677b040cebaf19b790600b83b03e3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 25 10:18:17 2020 +0100

    Camel-itest-osgi: set up the profile for testing
---
 tests/camel-itest-osgi/pom.xml |  2 +-
 tests/pom.xml                  | 22 +++-------------------
 2 files changed, 4 insertions(+), 20 deletions(-)

diff --git a/tests/camel-itest-osgi/pom.xml b/tests/camel-itest-osgi/pom.xml
index fd26b15..f631bf6 100644
--- a/tests/camel-itest-osgi/pom.xml
+++ b/tests/camel-itest-osgi/pom.xml
@@ -67,7 +67,7 @@
             </exclusions>
         </dependency>
         <dependency>
-            <groupId>org.apache.camel</groupId>
+            <groupId>org.apache.camel.karaf</groupId>
             <artifactId>camel-blueprint</artifactId>
             <scope>test</scope>
         </dependency>
diff --git a/tests/pom.xml b/tests/pom.xml
index 573193b..0b6b5aa 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -65,31 +65,15 @@
     </build>
 
     <profiles>
-        <!-- includes these modules when doing the release -->
-        <profile>
-            <id>release</id>
-            <modules>
-                <module>camel-itest-osgi</module>
-                <module>camel-itest-performance</module>
-                <module>camel-performance</module>
-            </modules>
-        </profile>
-
         <!-- osgi tests -->
         <profile>
             <id>osgi.test</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+            </activation>
             <modules>
                 <module>camel-itest-osgi</module>
             </modules>
         </profile>
-
-        <!-- performance tests -->
-        <profile>
-            <id>performance.test</id>
-            <modules>
-                <module>camel-itest-performance</module>
-                <module>camel-performance</module>
-            </modules>
-        </profile>
     </profiles>
 </project>