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

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

commit 88cd709a2d5e0ffc53c1aa32748d592032fb0765
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed Mar 10 16:37:17 2021 +0100

    CAMEL-16251 - Move Performance and jmh itests in a separated repository
---
 tests/camel-itest-performance/pom.xml | 13 -------------
 tests/camel-jmh/pom.xml               | 15 +--------------
 tests/camel-performance/pom.xml       | 13 -------------
 tests/pom.xml                         | 13 +++++++++++++
 4 files changed, 14 insertions(+), 40 deletions(-)

diff --git a/tests/camel-itest-performance/pom.xml 
b/tests/camel-itest-performance/pom.xml
index bd77f9f..422524a 100644
--- a/tests/camel-itest-performance/pom.xml
+++ b/tests/camel-itest-performance/pom.xml
@@ -32,19 +32,6 @@
     <name>Camel Performance :: Tests :: Perfomance integration tests</name>
     <description>Tests camel performance aspects</description>
 
-    <dependencyManagement>
-        <dependencies>
-            <!-- Add Camel BOM -->
-            <dependency>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>camel-bom</artifactId>
-                <version>${camel.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <dependencies>
 
         <dependency>
diff --git a/tests/camel-jmh/pom.xml b/tests/camel-jmh/pom.xml
index 2b87eba..6f51554 100644
--- a/tests/camel-jmh/pom.xml
+++ b/tests/camel-jmh/pom.xml
@@ -32,19 +32,6 @@
     <name>Camel Performance :: Tests :: JMH</name>
     <description>Performs JMH performance tests</description>
 
-    <dependencyManagement>
-        <dependencies>
-            <!-- Add Camel BOM -->
-            <dependency>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>camel-bom</artifactId>
-                <version>${camel.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <dependencies>
 
         <dependency>
@@ -98,7 +85,7 @@
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-slf4j-impl</artifactId>
             <scope>test</scope>
-             <version>${log4j2-version}</version>
+            <version>${log4j2-version}</version>
         </dependency>
     </dependencies>
 
diff --git a/tests/camel-performance/pom.xml b/tests/camel-performance/pom.xml
index 3e506f9..7e700c9 100644
--- a/tests/camel-performance/pom.xml
+++ b/tests/camel-performance/pom.xml
@@ -32,19 +32,6 @@
     <name>Camel Performance :: Tests :: Performance</name>
     <description>Performs cross component performance tests</description>
 
-    <dependencyManagement>
-        <dependencies>
-            <!-- Add Camel BOM -->
-            <dependency>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>camel-bom</artifactId>
-                <version>${camel.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <dependencies>
         <!-- assuming camel is pulling aries 1.0.0, pull asm 4.0 first -->
         <dependency>
diff --git a/tests/pom.xml b/tests/pom.xml
index e92c26f..634270a 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -34,6 +34,19 @@
     <packaging>pom</packaging>
     <name>Camel Performance :: Tests</name>
 
+    <dependencyManagement>
+        <dependencies>
+            <!-- Add Camel BOM -->
+            <dependency>
+                <groupId>org.apache.camel</groupId>
+                <artifactId>camel-bom</artifactId>
+                <version>${camel.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <modules>
         <module>camel-jmh</module>
         <module>camel-performance</module>

Reply via email to